diff options
author | Steve French <smfrench@gmail.com> | 2013-07-04 15:38:48 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-21 21:21:21 -0400 |
commit | cfe24e4e36ec19a56bac17691f8721ac44050a6f (patch) | |
tree | ac690dbe464d5642034ab9419198a494a0841d4c /fs | |
parent | cb5d8be972cfbea114ea56fd63ed5ce1644863df (diff) |
CIFS use sensible file nlink values if unprovided
commit 6658b9f70ebca5fc0795b1d6d733996af1e2caa7 upstream.
Certain servers may not set the NumberOfLinks field in query file/path
info responses. In such a case, cifs_inode_needs_reval() assumes that
all regular files are hardlinks and triggers revalidation, leading to
excessive and unnecessary network traffic.
This change hardcodes cf_nlink (and subsequently i_nlink) when not
returned by the server, similar to what already occurs in cifs_mkdir().
Signed-off-by: David Disseldorp <ddiss@suse.de>
Signed-off-by: Steve French <smfrench@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/inode.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index 20efd81266c6..449b6cf09b09 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c | |||
@@ -558,6 +558,11 @@ cifs_all_info_to_fattr(struct cifs_fattr *fattr, FILE_ALL_INFO *info, | |||
558 | fattr->cf_mode &= ~(S_IWUGO); | 558 | fattr->cf_mode &= ~(S_IWUGO); |
559 | 559 | ||
560 | fattr->cf_nlink = le32_to_cpu(info->NumberOfLinks); | 560 | fattr->cf_nlink = le32_to_cpu(info->NumberOfLinks); |
561 | if (fattr->cf_nlink < 1) { | ||
562 | cifs_dbg(1, "replacing bogus file nlink value %u\n", | ||
563 | fattr->cf_nlink); | ||
564 | fattr->cf_nlink = 1; | ||
565 | } | ||
561 | } | 566 | } |
562 | 567 | ||
563 | fattr->cf_uid = cifs_sb->mnt_uid; | 568 | fattr->cf_uid = cifs_sb->mnt_uid; |