diff options
Diffstat (limited to 'fs/cifs/file.c')
-rw-r--r-- | fs/cifs/file.c | 31 |
1 files changed, 3 insertions, 28 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index 90f61786f516..fee993c92f1a 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c | |||
@@ -40,29 +40,6 @@ | |||
40 | #include "cifs_debug.h" | 40 | #include "cifs_debug.h" |
41 | #include "cifs_fs_sb.h" | 41 | #include "cifs_fs_sb.h" |
42 | 42 | ||
43 | static inline struct cifsFileInfo *cifs_init_private( | ||
44 | struct cifsFileInfo *private_data, struct inode *inode, | ||
45 | struct file *file, __u16 netfid) | ||
46 | { | ||
47 | memset(private_data, 0, sizeof(struct cifsFileInfo)); | ||
48 | private_data->netfid = netfid; | ||
49 | private_data->pid = current->tgid; | ||
50 | mutex_init(&private_data->fh_mutex); | ||
51 | mutex_init(&private_data->lock_mutex); | ||
52 | INIT_LIST_HEAD(&private_data->llist); | ||
53 | private_data->pfile = file; /* needed for writepage */ | ||
54 | private_data->pInode = igrab(inode); | ||
55 | private_data->mnt = file->f_path.mnt; | ||
56 | private_data->invalidHandle = false; | ||
57 | private_data->closePend = false; | ||
58 | /* Initialize reference count to one. The private data is | ||
59 | freed on the release of the last reference */ | ||
60 | atomic_set(&private_data->count, 1); | ||
61 | slow_work_init(&private_data->oplock_break, &cifs_oplock_break_ops); | ||
62 | |||
63 | return private_data; | ||
64 | } | ||
65 | |||
66 | static inline int cifs_convert_flags(unsigned int flags) | 43 | static inline int cifs_convert_flags(unsigned int flags) |
67 | { | 44 | { |
68 | if ((flags & O_ACCMODE) == O_RDONLY) | 45 | if ((flags & O_ACCMODE) == O_RDONLY) |
@@ -420,15 +397,13 @@ int cifs_open(struct inode *inode, struct file *file) | |||
420 | cFYI(1, ("cifs_open returned 0x%x", rc)); | 397 | cFYI(1, ("cifs_open returned 0x%x", rc)); |
421 | goto out; | 398 | goto out; |
422 | } | 399 | } |
423 | file->private_data = | 400 | pCifsFile = cifs_new_fileinfo(inode, netfid, file, file->f_path.mnt, |
424 | kmalloc(sizeof(struct cifsFileInfo), GFP_KERNEL); | 401 | file->f_flags); |
402 | file->private_data = pCifsFile; | ||
425 | if (file->private_data == NULL) { | 403 | if (file->private_data == NULL) { |
426 | rc = -ENOMEM; | 404 | rc = -ENOMEM; |
427 | goto out; | 405 | goto out; |
428 | } | 406 | } |
429 | pCifsFile = cifs_init_private(file->private_data, inode, file, netfid); | ||
430 | write_lock(&GlobalSMBSeslock); | ||
431 | list_add(&pCifsFile->tlist, &tcon->openFileList); | ||
432 | 407 | ||
433 | pCifsInode = CIFS_I(file->f_path.dentry->d_inode); | 408 | pCifsInode = CIFS_I(file->f_path.dentry->d_inode); |
434 | if (pCifsInode) { | 409 | if (pCifsInode) { |