aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/cifsfs.c
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2006-01-12 17:47:08 -0500
committerSteve French <sfrench@us.ibm.com>2006-01-12 17:47:08 -0500
commit94bc2be31a01a3055ec94176e595dfe208e92d3b (patch)
treeebfbe81c6718a6390bfa1b99c6d228237d818576 /fs/cifs/cifsfs.c
parentc32a0b689cb9cc160cfcd19735bbf50bb70c6ef4 (diff)
parent58cba4650a7a414eabd2b40cc9d8e45fcdf192d9 (diff)
Merge with /pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r--fs/cifs/cifsfs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c
index 136af8a08f45..79eeccd0437f 100644
--- a/fs/cifs/cifsfs.c
+++ b/fs/cifs/cifsfs.c
@@ -874,9 +874,9 @@ static int cifs_oplock_thread(void * dummyarg)
874 DeleteOplockQEntry(oplock_item); 874 DeleteOplockQEntry(oplock_item);
875 /* can not grab inode sem here since it would 875 /* can not grab inode sem here since it would
876 deadlock when oplock received on delete 876 deadlock when oplock received on delete
877 since vfs_unlink holds the i_sem across 877 since vfs_unlink holds the i_mutex across
878 the call */ 878 the call */
879 /* down(&inode->i_sem);*/ 879 /* mutex_lock(&inode->i_mutex);*/
880 if (S_ISREG(inode->i_mode)) { 880 if (S_ISREG(inode->i_mode)) {
881 rc = filemap_fdatawrite(inode->i_mapping); 881 rc = filemap_fdatawrite(inode->i_mapping);
882 if(CIFS_I(inode)->clientCanCacheRead == 0) { 882 if(CIFS_I(inode)->clientCanCacheRead == 0) {
@@ -885,7 +885,7 @@ static int cifs_oplock_thread(void * dummyarg)
885 } 885 }
886 } else 886 } else
887 rc = 0; 887 rc = 0;
888 /* up(&inode->i_sem);*/ 888 /* mutex_unlock(&inode->i_mutex);*/
889 if (rc) 889 if (rc)
890 CIFS_I(inode)->write_behind_rc = rc; 890 CIFS_I(inode)->write_behind_rc = rc;
891 cFYI(1,("Oplock flush inode %p rc %d",inode,rc)); 891 cFYI(1,("Oplock flush inode %p rc %d",inode,rc));