diff options
author | Jeff Layton | 2008-08-02 13:26:12 +0200 |
---|---|---|
committer | Steve French | 2008-08-06 06:24:50 +0200 |
commit | 2dd2dfa060650118661422d4e666ac804c388751 (patch) | |
tree | 6dd3fb4e1dbe9a6119f17bf0defb12660f2be9a5 /fs/cifs/inode.c | |
parent | change CIFSSMBSetTimes to CIFSSMBSetPathInfo (diff) | |
download | kernel-qcow2-linux-2dd2dfa060650118661422d4e666ac804c388751.tar.gz kernel-qcow2-linux-2dd2dfa060650118661422d4e666ac804c388751.tar.xz kernel-qcow2-linux-2dd2dfa060650118661422d4e666ac804c388751.zip |
Rename CIFSSMBSetFileTimes to CIFSSMBSetFileInfo and add PID arg
The new name is more clear since this is also used to set file
attributes. We'll need the pid_of_opener arg so that we can
pass in filehandles of other pids and spare ourselves an open
call.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/inode.c')
-rw-r--r-- | fs/cifs/inode.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index 9d94afe9b60e..d952914dfc4c 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c @@ -767,9 +767,10 @@ psx_del_no_retry: cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); if (rc == 0) { - rc = CIFSSMBSetFileTimes(xid, pTcon, - pinfo_buf, - netfid); + rc = CIFSSMBSetFileInfo(xid, pTcon, + pinfo_buf, + netfid, + current->tgid); CIFSSMBClose(xid, pTcon, netfid); } } @@ -1702,8 +1703,8 @@ int cifs_setattr(struct dentry *direntry, struct iattr *attrs) cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); if (rc == 0) { - rc = CIFSSMBSetFileTimes(xid, pTcon, &time_buf, - netfid); + rc = CIFSSMBSetFileInfo(xid, pTcon, &time_buf, + netfid, current->tgid); CIFSSMBClose(xid, pTcon, netfid); } else { /* BB For even older servers we could convert time_buf |