|
@@ -2178,7 +2178,7 @@ cifs_iovec_write(struct file *file, const struct iovec *iov,
|
|
|
unsigned long nr_pages, i;
|
|
|
size_t copied, len, cur_len;
|
|
|
ssize_t total_written = 0;
|
|
|
- loff_t offset = *poffset;
|
|
|
+ loff_t offset;
|
|
|
struct iov_iter it;
|
|
|
struct cifsFileInfo *open_file;
|
|
|
struct cifs_tcon *tcon;
|
|
@@ -2200,6 +2200,7 @@ cifs_iovec_write(struct file *file, const struct iovec *iov,
|
|
|
cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
|
|
|
open_file = file->private_data;
|
|
|
tcon = tlink_tcon(open_file->tlink);
|
|
|
+ offset = *poffset;
|
|
|
|
|
|
if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD)
|
|
|
pid = open_file->pid;
|