diff options
author | Chunguang Xu <brookxu@tencent.com> | 2020-09-24 11:03:43 +0800 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2020-10-18 10:36:59 -0400 |
commit | dd0db94f305c9f5dd44d0ecc7bf29944d4867074 (patch) | |
tree | 3d39c001d03a1d963b723d9aed4228f94aa93c19 /fs/ext4/ext4.h | |
parent | ee7ed3aa0f08621dbf897d2a98dc6f2c7e7d0335 (diff) |
ext4: rename system_blks to s_system_blks inside ext4_sb_info
Rename system_blks to s_system_blks inside ext4_sb_info, keep
the naming rules consistent with other variables, which is
convenient for code reading and writing.
Signed-off-by: Chunguang Xu <brookxu@tencent.com>
Reviewed-by: Andreas Dilger <adilger@dilger.ca>
Reviewed-by: Ritesh Harjani <riteshh@linux.ibm.com>
Link: https://lore.kernel.org/r/1600916623-544-2-git-send-email-brookxu@tencent.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ext4.h')
-rw-r--r-- | fs/ext4/ext4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index 0c547fce7ff9..11077696031d 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h @@ -1487,7 +1487,7 @@ struct ext4_sb_info { int s_jquota_fmt; /* Format of quota to use */ #endif unsigned int s_want_extra_isize; /* New inodes should reserve # bytes */ - struct ext4_system_blocks __rcu *system_blks; + struct ext4_system_blocks __rcu *s_system_blks; #ifdef EXTENTS_STATS /* ext4 extents stats */ |