summaryrefslogtreecommitdiffstats
path: root/fs/adfs
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2016-01-20 18:01:16 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2016-01-20 20:09:18 -0500
commit90d6cd51af1aa275a302846b35b9638c870d2af5 (patch)
tree50d7ea738b7dd64a5d2a78eb35c58791722a2220 /fs/adfs
parente458bcd16f5bec6f19b60ef957b4f88af95aa78a (diff)
fs/adfs/adfs.h: tidy up comments
Lots of needless 80-col overflows. Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/adfs')
-rw-r--r--fs/adfs/adfs.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/fs/adfs/adfs.h b/fs/adfs/adfs.h
index ea4aba56f29d..fadf408bdd46 100644
--- a/fs/adfs/adfs.h
+++ b/fs/adfs/adfs.h
@@ -44,24 +44,24 @@ struct adfs_dir_ops;
44 */ 44 */
45struct adfs_sb_info { 45struct adfs_sb_info {
46 union { struct { 46 union { struct {
47 struct adfs_discmap *s_map; /* bh list containing map */ 47 struct adfs_discmap *s_map; /* bh list containing map */
48 const struct adfs_dir_ops *s_dir; /* directory operations */ 48 const struct adfs_dir_ops *s_dir; /* directory operations */
49 }; 49 };
50 struct rcu_head rcu; /* used only at shutdown time */ 50 struct rcu_head rcu; /* used only at shutdown time */
51 }; 51 };
52 kuid_t s_uid; /* owner uid */ 52 kuid_t s_uid; /* owner uid */
53 kgid_t s_gid; /* owner gid */ 53 kgid_t s_gid; /* owner gid */
54 umode_t s_owner_mask; /* ADFS owner perm -> unix perm */ 54 umode_t s_owner_mask; /* ADFS owner perm -> unix perm */
55 umode_t s_other_mask; /* ADFS other perm -> unix perm */ 55 umode_t s_other_mask; /* ADFS other perm -> unix perm */
56 int s_ftsuffix; /* ,xyz hex filetype suffix option */ 56 int s_ftsuffix; /* ,xyz hex filetype suffix option */
57 57
58 __u32 s_ids_per_zone; /* max. no ids in one zone */ 58 __u32 s_ids_per_zone; /* max. no ids in one zone */
59 __u32 s_idlen; /* length of ID in map */ 59 __u32 s_idlen; /* length of ID in map */
60 __u32 s_map_size; /* sector size of a map */ 60 __u32 s_map_size; /* sector size of a map */
61 unsigned long s_size; /* total size (in blocks) of this fs */ 61 unsigned long s_size; /* total size (in blocks) of this fs */
62 signed int s_map2blk; /* shift left by this for map->sector */ 62 signed int s_map2blk; /* shift left by this for map->sector*/
63 unsigned int s_log2sharesize;/* log2 share size */ 63 unsigned int s_log2sharesize;/* log2 share size */
64 __le32 s_version; /* disc format version */ 64 __le32 s_version; /* disc format version */
65 unsigned int s_namelen; /* maximum number of characters in name */ 65 unsigned int s_namelen; /* maximum number of characters in name */
66}; 66};
67 67