diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2019-12-09 12:09:10 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2020-01-21 02:12:40 +0100 |
commit | 71b2612776c1b9c34c460f79bcdaef46d0e77ed2 (patch) | |
tree | 4daf3560ba5ae73fa83f4f1f5f064c78ccf30c39 /fs/adfs/adfs.h | |
parent | fs/adfs: map: fix map scanning (diff) | |
download | linux-71b2612776c1b9c34c460f79bcdaef46d0e77ed2.tar.xz linux-71b2612776c1b9c34c460f79bcdaef46d0e77ed2.zip |
fs/adfs: dir: rename bh_fplus to bhs
Rename bh_fplus to bhs in preparation to make some of the directory
handling code sharable between implementations.
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/adfs/adfs.h')
-rw-r--r-- | fs/adfs/adfs.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/adfs/adfs.h b/fs/adfs/adfs.h index 6497da8a2c8a..956ac0bd53e1 100644 --- a/fs/adfs/adfs.h +++ b/fs/adfs/adfs.h @@ -93,9 +93,7 @@ struct adfs_dir { int nr_buffers; struct buffer_head *bh[4]; - - /* big directories need allocated buffers */ - struct buffer_head **bh_fplus; + struct buffer_head **bhs; unsigned int pos; __u32 parent_id; |