aboutsummaryrefslogtreecommitdiffstats
path: root/fs/smbfs
diff options
context:
space:
mode:
authorMatthew Wilcox <matthew@wil.cx>2007-12-06 16:25:30 -0500
committerMatthew Wilcox <willy@linux.intel.com>2007-12-06 17:40:31 -0500
commit2dfe485a2c8afa54cb069fcf48476f6c90ea3fdf (patch)
tree18e40dae13cd94f3c47fd65dddb909eb3f87197a /fs/smbfs
parent150030b78a454ba50d5e267b0dcf01b162809192 (diff)
Remove commented-out code copied from NFS
This is a false positive when grepping ... change it to be what the NFS code looks like now. Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
Diffstat (limited to 'fs/smbfs')
-rw-r--r--fs/smbfs/request.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/smbfs/request.c b/fs/smbfs/request.c
index ca4b2d59c0c..45f45933e86 100644
--- a/fs/smbfs/request.c
+++ b/fs/smbfs/request.c
@@ -105,7 +105,7 @@ struct smb_request *smb_alloc_request(struct smb_sb_info *server, int bufsize)
105 if (nfs_try_to_free_pages(server)) 105 if (nfs_try_to_free_pages(server))
106 continue; 106 continue;
107 107
108 if (signalled() && (server->flags & NFS_MOUNT_INTR)) 108 if (fatal_signal_pending(current))
109 return ERR_PTR(-ERESTARTSYS); 109 return ERR_PTR(-ERESTARTSYS);
110 current->policy = SCHED_YIELD; 110 current->policy = SCHED_YIELD;
111 schedule(); 111 schedule();