diff options
| author | Patrick McHardy <kaber@trash.net> | 2010-04-20 10:02:01 -0400 |
|---|---|---|
| committer | Patrick McHardy <kaber@trash.net> | 2010-04-20 10:02:01 -0400 |
| commit | 62910554656cdcd6b6f84a5154c4155aae4ca231 (patch) | |
| tree | dcf14004f6fd2ef7154362ff948bfeba0f3ea92d /fs/cifs/file.c | |
| parent | 22265a5c3c103cf8c50be62e6c90d045eb649e6d (diff) | |
| parent | ab9304717f7624c41927f442e6b6d418b2d8b3e4 (diff) | |
Merge branch 'master' of /repos/git/net-next-2.6
Conflicts:
Documentation/feature-removal-schedule.txt
net/ipv6/netfilter/ip6t_REJECT.c
net/netfilter/xt_limit.c
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'fs/cifs/file.c')
| -rw-r--r-- | fs/cifs/file.c | 36 |
1 files changed, 30 insertions, 6 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index 3d8f8a96f5a3..9b11a8f56f3a 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c | |||
| @@ -31,6 +31,7 @@ | |||
| 31 | #include <linux/task_io_accounting_ops.h> | 31 | #include <linux/task_io_accounting_ops.h> |
| 32 | #include <linux/delay.h> | 32 | #include <linux/delay.h> |
| 33 | #include <linux/mount.h> | 33 | #include <linux/mount.h> |
| 34 | #include <linux/slab.h> | ||
| 34 | #include <asm/div64.h> | 35 | #include <asm/div64.h> |
| 35 | #include "cifsfs.h" | 36 | #include "cifsfs.h" |
| 36 | #include "cifspdu.h" | 37 | #include "cifspdu.h" |
| @@ -219,8 +220,8 @@ static inline int cifs_open_inode_helper(struct inode *inode, struct file *file, | |||
| 219 | cFYI(1, ("inode unchanged on server")); | 220 | cFYI(1, ("inode unchanged on server")); |
| 220 | } else { | 221 | } else { |
| 221 | if (file->f_path.dentry->d_inode->i_mapping) { | 222 | if (file->f_path.dentry->d_inode->i_mapping) { |
| 222 | /* BB no need to lock inode until after invalidate | 223 | /* BB no need to lock inode until after invalidate |
| 223 | since namei code should already have it locked? */ | 224 | since namei code should already have it locked? */ |
| 224 | rc = filemap_write_and_wait(file->f_path.dentry->d_inode->i_mapping); | 225 | rc = filemap_write_and_wait(file->f_path.dentry->d_inode->i_mapping); |
| 225 | if (rc != 0) | 226 | if (rc != 0) |
| 226 | CIFS_I(file->f_path.dentry->d_inode)->write_behind_rc = rc; | 227 | CIFS_I(file->f_path.dentry->d_inode)->write_behind_rc = rc; |
| @@ -838,8 +839,32 @@ int cifs_lock(struct file *file, int cmd, struct file_lock *pfLock) | |||
| 838 | 839 | ||
| 839 | } else { | 840 | } else { |
| 840 | /* if rc == ERR_SHARING_VIOLATION ? */ | 841 | /* if rc == ERR_SHARING_VIOLATION ? */ |
| 841 | rc = 0; /* do not change lock type to unlock | 842 | rc = 0; |
| 842 | since range in use */ | 843 | |
| 844 | if (lockType & LOCKING_ANDX_SHARED_LOCK) { | ||
| 845 | pfLock->fl_type = F_WRLCK; | ||
| 846 | } else { | ||
| 847 | rc = CIFSSMBLock(xid, tcon, netfid, length, | ||
| 848 | pfLock->fl_start, 0, 1, | ||
| 849 | lockType | LOCKING_ANDX_SHARED_LOCK, | ||
| 850 | 0 /* wait flag */); | ||
| 851 | if (rc == 0) { | ||
| 852 | rc = CIFSSMBLock(xid, tcon, netfid, | ||
| 853 | length, pfLock->fl_start, 1, 0, | ||
| 854 | lockType | | ||
| 855 | LOCKING_ANDX_SHARED_LOCK, | ||
| 856 | 0 /* wait flag */); | ||
| 857 | pfLock->fl_type = F_RDLCK; | ||
| 858 | if (rc != 0) | ||
| 859 | cERROR(1, ("Error unlocking " | ||
| 860 | "previously locked range %d " | ||
| 861 | "during test of lock", rc)); | ||
| 862 | rc = 0; | ||
| 863 | } else { | ||
| 864 | pfLock->fl_type = F_WRLCK; | ||
| 865 | rc = 0; | ||
| 866 | } | ||
| 867 | } | ||
| 843 | } | 868 | } |
| 844 | 869 | ||
| 845 | FreeXid(xid); | 870 | FreeXid(xid); |
| @@ -1890,11 +1915,10 @@ static ssize_t cifs_read(struct file *file, char *read_data, size_t read_size, | |||
| 1890 | 1915 | ||
| 1891 | int cifs_file_mmap(struct file *file, struct vm_area_struct *vma) | 1916 | int cifs_file_mmap(struct file *file, struct vm_area_struct *vma) |
| 1892 | { | 1917 | { |
| 1893 | struct dentry *dentry = file->f_path.dentry; | ||
| 1894 | int rc, xid; | 1918 | int rc, xid; |
| 1895 | 1919 | ||
| 1896 | xid = GetXid(); | 1920 | xid = GetXid(); |
| 1897 | rc = cifs_revalidate(dentry); | 1921 | rc = cifs_revalidate_file(file); |
| 1898 | if (rc) { | 1922 | if (rc) { |
| 1899 | cFYI(1, ("Validation prior to mmap failed, error=%d", rc)); | 1923 | cFYI(1, ("Validation prior to mmap failed, error=%d", rc)); |
| 1900 | FreeXid(xid); | 1924 | FreeXid(xid); |
