aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/cifs/cifsglob.h1
-rw-r--r--fs/cifs/dir.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h
index 6ef0efaf68d4..6f3968a5fea4 100644
--- a/fs/cifs/cifsglob.h
+++ b/fs/cifs/cifsglob.h
@@ -351,6 +351,7 @@ struct cifsFileInfo {
351 struct file *pfile; /* needed for writepage */ 351 struct file *pfile; /* needed for writepage */
352 struct inode *pInode; /* needed for oplock break */ 352 struct inode *pInode; /* needed for oplock break */
353 struct vfsmount *mnt; 353 struct vfsmount *mnt;
354 struct cifsTconInfo *tcon;
354 struct mutex lock_mutex; 355 struct mutex lock_mutex;
355 struct list_head llist; /* list of byte range locks we have. */ 356 struct list_head llist; /* list of byte range locks we have. */
356 bool closePend:1; /* file is marked to close */ 357 bool closePend:1; /* file is marked to close */
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c
index 0f947bf73f8e..613589cf5172 100644
--- a/fs/cifs/dir.c
+++ b/fs/cifs/dir.c
@@ -150,6 +150,7 @@ cifs_new_fileinfo(struct inode *newinode, __u16 fileHandle,
150 pCifsFile->pfile = file; 150 pCifsFile->pfile = file;
151 pCifsFile->invalidHandle = false; 151 pCifsFile->invalidHandle = false;
152 pCifsFile->closePend = false; 152 pCifsFile->closePend = false;
153 pCifsFile->tcon = cifs_sb->tcon;
153 mutex_init(&pCifsFile->fh_mutex); 154 mutex_init(&pCifsFile->fh_mutex);
154 mutex_init(&pCifsFile->lock_mutex); 155 mutex_init(&pCifsFile->lock_mutex);
155 INIT_LIST_HEAD(&pCifsFile->llist); 156 INIT_LIST_HEAD(&pCifsFile->llist);