diff options
author | Steve French <sfrench@us.ibm.com> | 2007-07-18 20:38:57 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-07-18 20:38:57 -0400 |
commit | 1ff8392c32a2645d2665ca779ecb91bb29361c13 (patch) | |
tree | 860b95e9a499ade4060848740fc6ce1fbb4e4e8d /fs/cifs | |
parent | 70b315b0dd3879cb3ab8aadffb14f10b2d19b9c3 (diff) | |
parent | 5bae7ac9feba925fd0099057f6b23d7be80b7b41 (diff) |
Merge branch 'master' of /pub/scm/linux/kernel/git/torvalds/linux-2.6
Conflicts:
fs/cifs/export.c
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/cifsfs.c | 9 | ||||
-rw-r--r-- | fs/cifs/connect.c | 1 | ||||
-rw-r--r-- | fs/cifs/export.c | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 1cebb7e34215..1fd0dc85f53c 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c | |||
@@ -623,7 +623,7 @@ const struct file_operations cifs_file_ops = { | |||
623 | .fsync = cifs_fsync, | 623 | .fsync = cifs_fsync, |
624 | .flush = cifs_flush, | 624 | .flush = cifs_flush, |
625 | .mmap = cifs_file_mmap, | 625 | .mmap = cifs_file_mmap, |
626 | .sendfile = generic_file_sendfile, | 626 | .splice_read = generic_file_splice_read, |
627 | .llseek = cifs_llseek, | 627 | .llseek = cifs_llseek, |
628 | #ifdef CONFIG_CIFS_POSIX | 628 | #ifdef CONFIG_CIFS_POSIX |
629 | .ioctl = cifs_ioctl, | 629 | .ioctl = cifs_ioctl, |
@@ -644,7 +644,7 @@ const struct file_operations cifs_file_direct_ops = { | |||
644 | .lock = cifs_lock, | 644 | .lock = cifs_lock, |
645 | .fsync = cifs_fsync, | 645 | .fsync = cifs_fsync, |
646 | .flush = cifs_flush, | 646 | .flush = cifs_flush, |
647 | .sendfile = generic_file_sendfile, /* BB removeme BB */ | 647 | .splice_read = generic_file_splice_read, |
648 | #ifdef CONFIG_CIFS_POSIX | 648 | #ifdef CONFIG_CIFS_POSIX |
649 | .ioctl = cifs_ioctl, | 649 | .ioctl = cifs_ioctl, |
650 | #endif /* CONFIG_CIFS_POSIX */ | 650 | #endif /* CONFIG_CIFS_POSIX */ |
@@ -663,7 +663,7 @@ const struct file_operations cifs_file_nobrl_ops = { | |||
663 | .fsync = cifs_fsync, | 663 | .fsync = cifs_fsync, |
664 | .flush = cifs_flush, | 664 | .flush = cifs_flush, |
665 | .mmap = cifs_file_mmap, | 665 | .mmap = cifs_file_mmap, |
666 | .sendfile = generic_file_sendfile, | 666 | .splice_read = generic_file_splice_read, |
667 | .llseek = cifs_llseek, | 667 | .llseek = cifs_llseek, |
668 | #ifdef CONFIG_CIFS_POSIX | 668 | #ifdef CONFIG_CIFS_POSIX |
669 | .ioctl = cifs_ioctl, | 669 | .ioctl = cifs_ioctl, |
@@ -683,7 +683,7 @@ const struct file_operations cifs_file_direct_nobrl_ops = { | |||
683 | .release = cifs_close, | 683 | .release = cifs_close, |
684 | .fsync = cifs_fsync, | 684 | .fsync = cifs_fsync, |
685 | .flush = cifs_flush, | 685 | .flush = cifs_flush, |
686 | .sendfile = generic_file_sendfile, /* BB removeme BB */ | 686 | .splice_read = generic_file_splice_read, |
687 | #ifdef CONFIG_CIFS_POSIX | 687 | #ifdef CONFIG_CIFS_POSIX |
688 | .ioctl = cifs_ioctl, | 688 | .ioctl = cifs_ioctl, |
689 | #endif /* CONFIG_CIFS_POSIX */ | 689 | #endif /* CONFIG_CIFS_POSIX */ |
@@ -856,6 +856,7 @@ static int cifs_oplock_thread(void *dummyarg) | |||
856 | __u16 netfid; | 856 | __u16 netfid; |
857 | int rc; | 857 | int rc; |
858 | 858 | ||
859 | set_freezable(); | ||
859 | do { | 860 | do { |
860 | if (try_to_freeze()) | 861 | if (try_to_freeze()) |
861 | continue; | 862 | continue; |
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index e93da7ad9002..4af3588c1a96 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c | |||
@@ -364,6 +364,7 @@ cifs_demultiplex_thread(struct TCP_Server_Info *server) | |||
364 | GFP_KERNEL); | 364 | GFP_KERNEL); |
365 | } | 365 | } |
366 | 366 | ||
367 | set_freezable(); | ||
367 | while (!kthread_should_stop()) { | 368 | while (!kthread_should_stop()) { |
368 | if (try_to_freeze()) | 369 | if (try_to_freeze()) |
369 | continue; | 370 | continue; |
diff --git a/fs/cifs/export.c b/fs/cifs/export.c index c21d3d09d0af..893fd0aebff8 100644 --- a/fs/cifs/export.c +++ b/fs/cifs/export.c | |||
@@ -44,9 +44,7 @@ | |||
44 | #include "cifsglob.h" | 44 | #include "cifsglob.h" |
45 | #include "cifs_debug.h" | 45 | #include "cifs_debug.h" |
46 | 46 | ||
47 | |||
48 | #ifdef CONFIG_CIFS_EXPERIMENTAL | 47 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
49 | |||
50 | static struct dentry *cifs_get_parent(struct dentry *dentry) | 48 | static struct dentry *cifs_get_parent(struct dentry *dentry) |
51 | { | 49 | { |
52 | /* BB need to add code here eventually to enable export via NFSD */ | 50 | /* BB need to add code here eventually to enable export via NFSD */ |