diff options
author | Steve French <sfrench@us.ibm.com> | 2005-08-31 05:10:14 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-23 20:37:53 +0200 |
commit | ede1327ea4ca8019ec6df24b3e837def091c26b8 (patch) | |
tree | f34c9293ae84a0f52828a41807b10ddf74260f9a /fs/cifs/cifsfs.c | |
parent | [PATCH] pci: fixup parent subordinate busnr (diff) | |
download | linux-ede1327ea4ca8019ec6df24b3e837def091c26b8.tar.xz linux-ede1327ea4ca8019ec6df24b3e837def091c26b8.zip |
[PATCH] cifs: Add support for suspend
cifsd had been preventing software suspend from completing.
Signed-off-by: pavel@suse.de
Signed-off-by: Steve French <sfrench@us.ibm.com> lightly modified
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r-- | fs/cifs/cifsfs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 8cc23e7d0d5d..1ebf7dafc1d7 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -781,6 +781,8 @@ static int cifs_oplock_thread(void * dummyarg) oplockThread = current; do { + if (try_to_freeze()) + continue; set_current_state(TASK_INTERRUPTIBLE); schedule_timeout(1*HZ); |