diff options
author | Jim McDonough <jmcd@samba.org> | 2013-09-21 10:36:10 -0500 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2013-09-21 10:36:10 -0500 |
commit | 74d290da476f672ad756634d12aa707375d3564d (patch) | |
tree | aa972423ddb39e39d49cca13349eb9e07c3d70c3 /fs/cifs/cifsglob.h | |
parent | 9ae6cf606a33b0a762798df0fb742848bcc685b5 (diff) | |
download | linux-74d290da476f672ad756634d12aa707375d3564d.tar.gz linux-74d290da476f672ad756634d12aa707375d3564d.tar.bz2 linux-74d290da476f672ad756634d12aa707375d3564d.zip |
[CIFS] Provide sane values for nlink
Since we don't get info about the number of links from the readdir
linfo levels, stat() will return 0 for st_nlink, and in particular,
samba re-exported shares will show directories as files (as samba is
keying off st_nlink before evaluating how to set the dos modebits)
when doing a dir or ls.
Copy nlink to the inode, unless it wasn't provided. Provide
sane values if we don't have an existing one and none was provided.
Signed-off-by: Jim McDonough <jmcd@samba.org>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs/cifsglob.h')
-rw-r--r-- | fs/cifs/cifsglob.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 9c72be6fb0df..52b6f6c26bfc 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -1268,6 +1268,7 @@ struct dfs_info3_param { #define CIFS_FATTR_DELETE_PENDING 0x2 #define CIFS_FATTR_NEED_REVAL 0x4 #define CIFS_FATTR_INO_COLLISION 0x8 +#define CIFS_FATTR_UNKNOWN_NLINK 0x10 struct cifs_fattr { u32 cf_flags; |