summaryrefslogtreecommitdiffstats
path: root/fs/cifs/fcntl.c
diff options
context:
space:
mode:
authorSteve French2005-08-25 05:03:11 +0200
committerSteve French2005-08-25 05:03:11 +0200
commit167a251ad6678ad26aa3cf27bab677b274374ab6 (patch)
tree3db2a878de70d180d634d06e5ddf8dc325230e40 /fs/cifs/fcntl.c
parent[CIFS] Missing line from previous patch (diff)
downloadkernel-qcow2-linux-167a251ad6678ad26aa3cf27bab677b274374ab6.tar.gz
kernel-qcow2-linux-167a251ad6678ad26aa3cf27bab677b274374ab6.tar.xz
kernel-qcow2-linux-167a251ad6678ad26aa3cf27bab677b274374ab6.zip
[CIFS] Change notify support part 3
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/fcntl.c')
-rw-r--r--fs/cifs/fcntl.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/fs/cifs/fcntl.c b/fs/cifs/fcntl.c
index d47ce7f49dc3..2e5137b7352a 100644
--- a/fs/cifs/fcntl.c
+++ b/fs/cifs/fcntl.c
@@ -100,8 +100,10 @@ int cifs_dir_notify(struct file * file, unsigned long arg)
} else {
filter = convert_to_cifs_notify_flags(arg);
if(filter != 0) {
- rc = CIFSSMBNotify(xid, pTcon, 0 /* no subdirs */, netfid,
- filter, cifs_sb->local_nls);
+ rc = CIFSSMBNotify(xid, pTcon,
+ 0 /* no subdirs */, netfid,
+ filter, file, arg & DN_MULTISHOT,
+ cifs_sb->local_nls);
} else {
rc = -EINVAL;
}
@@ -109,7 +111,7 @@ int cifs_dir_notify(struct file * file, unsigned long arg)
it would close automatically but may be a way
to do it easily when inode freed or when
notify info is cleared/changed */
- cERROR(1,("notify rc %d",rc));
+ cFYI(1,("notify rc %d",rc));
}
}