diff options
author | Vincent Stehlé <vincent.stehle@laposte.net> | 2014-07-21 23:47:36 +0200 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2014-08-11 01:31:03 -0500 |
commit | e91259f3c72648976511b1600f983d202dda1af1 (patch) | |
tree | 6c3d4f4b5153d4d666c94b4ea00ebde379082426 /fs/cifs | |
parent | c8d6637d0497d62093dbba0694c7b3a80b79bfe1 (diff) | |
download | op-kernel-dev-e91259f3c72648976511b1600f983d202dda1af1.zip op-kernel-dev-e91259f3c72648976511b1600f983d202dda1af1.tar.gz |
cifs: remove unused function cifs_oplock_break_wait
Commit 743162013d40 ("sched: Remove proliferation of wait_on_bit() action
functions") has removed the call to cifs_oplock_break_wait, making this
function unused; remove it.
This fixes the following compilation warning:
fs/cifs/misc.c:578:1: warning: ‘cifs_oplock_break_wait’ defined but not used [-Wunused-function]
Signed-off-by: Vincent Stehlé <vincent.stehle@laposte.net>
Cc: Steve French <sfrench@samba.org>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/misc.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/cifs/misc.c b/fs/cifs/misc.c index 81340c6..b7415d5 100644 --- a/fs/cifs/misc.c +++ b/fs/cifs/misc.c @@ -574,13 +574,6 @@ void cifs_set_oplock_level(struct cifsInodeInfo *cinode, __u32 oplock) cinode->oplock = 0; } -static int -cifs_oplock_break_wait(void *unused) -{ - schedule(); - return signal_pending(current) ? -ERESTARTSYS : 0; -} - /* * We wait for oplock breaks to be processed before we attempt to perform * writes. |