aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/cifssmb.c
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2005-08-24 23:03:11 -0400
committerSteve French <sfrench@us.ibm.com>2005-08-24 23:03:11 -0400
commit167a251ad6678ad26aa3cf27bab677b274374ab6 (patch)
tree3db2a878de70d180d634d06e5ddf8dc325230e40 /fs/cifs/cifssmb.c
parentabb15b8ae4eb7cdff0061e7ac5eca1f8dd8a84af (diff)
[CIFS] Change notify support part 3
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifssmb.c')
-rw-r--r--fs/cifs/cifssmb.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c
index be2a3b9a718c..67a6240ff2ba 100644
--- a/fs/cifs/cifssmb.c
+++ b/fs/cifs/cifssmb.c
@@ -3977,8 +3977,9 @@ setPermsRetry:
3977} 3977}
3978 3978
3979int CIFSSMBNotify(const int xid, struct cifsTconInfo *tcon, 3979int CIFSSMBNotify(const int xid, struct cifsTconInfo *tcon,
3980 const int notify_subdirs, const __u16 netfid, 3980 const int notify_subdirs, const __u16 netfid,
3981 __u32 filter, const struct nls_table *nls_codepage) 3981 __u32 filter, struct file * pfile, int multishot,
3982 const struct nls_table *nls_codepage)
3982{ 3983{
3983 int rc = 0; 3984 int rc = 0;
3984 struct smb_com_transaction_change_notify_req * pSMB = NULL; 3985 struct smb_com_transaction_change_notify_req * pSMB = NULL;
@@ -4026,7 +4027,7 @@ int CIFSSMBNotify(const int xid, struct cifsTconInfo *tcon,
4026 dnotify_req->Tid = pSMB->hdr.Tid; 4027 dnotify_req->Tid = pSMB->hdr.Tid;
4027 dnotify_req->Uid = pSMB->hdr.Uid; 4028 dnotify_req->Uid = pSMB->hdr.Uid;
4028 dnotify_req->netfid = netfid; 4029 dnotify_req->netfid = netfid;
4029 dnotify_req->dentry = dentry; 4030 dnotify_req->pfile = pfile;
4030 dnotify_req->filter = filter; 4031 dnotify_req->filter = filter;
4031 dnotify_req->multishot = multishot; 4032 dnotify_req->multishot = multishot;
4032 spin_lock(&GlobalMid_Lock); 4033 spin_lock(&GlobalMid_Lock);