diff options
author | Steve French <sfrench@us.ibm.com> | 2005-11-29 21:22:19 -0800 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2005-11-29 21:22:19 -0800 |
commit | 2a138ebb012ac42c082ae8b40c87c1f265664391 (patch) | |
tree | 181d9e6de5edd82eaf7d36c9946f93f68945ca2c /fs | |
parent | 606c0dafbe88102d64c1253caed8a2c36987070f (diff) | |
download | linux-3.10-2a138ebb012ac42c082ae8b40c87c1f265664391.tar.gz linux-3.10-2a138ebb012ac42c082ae8b40c87c1f265664391.tar.bz2 linux-3.10-2a138ebb012ac42c082ae8b40c87c1f265664391.zip |
[CIFS] Missing parenthesis and typo in previous fix
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/cifsfs.c | 2 | ||||
-rw-r--r-- | fs/cifs/inode.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index f4974b41e48..2a13a2bac8f 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -921,7 +921,7 @@ static int cifs_dnotify_thread(void * dummyarg) ses = list_entry(tmp, struct cifsSesInfo, cifsSessionList); if(ses && ses->server && - atomic_read(&ses->server->inSend)) + atomic_read(&ses->server->inFlight)) wake_up_all(&ses->server->response_q); } read_unlock(&GlobalSMBSeslock); diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index 053c1cadf70..e8773461c7f 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c @@ -778,6 +778,7 @@ int cifs_mkdir(struct inode *inode, struct dentry *direntry, int mode) current->fsgid; } } + } } kfree(full_path); FreeXid(xid); @@ -1124,7 +1125,7 @@ int cifs_setattr(struct dentry *direntry, struct iattr *attrs) cifs_sb = CIFS_SB(direntry->d_inode->i_sb); pTcon = cifs_sb->tcon; - if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM == 0) { + if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) == 0) { /* check if we have permission to change attrs */ rc = inode_change_ok(direntry->d_inode, attrs); if(rc < 0) { |