diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2019-06-04 14:49:30 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-06-26 20:14:13 -0400 |
commit | 1dfdfc94730bde781c87b25fd606f6dfaffe9097 (patch) | |
tree | d9bea48d5933b429b1ded67b9fc3f099d4c6c7ed /fs/adfs/adfs.h | |
parent | 3ae762a09cd72a08ef620c80fbb263693c3fb204 (diff) | |
download | linux-1dfdfc94730bde781c87b25fd606f6dfaffe9097.tar.bz2 |
fs/adfs: add helper to get discrecord from map
Add a helper to get the disc record from the map, rather than open
coding this in adfs_fill_super().
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 | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/fs/adfs/adfs.h b/fs/adfs/adfs.h index 804c6a77c5db..5a72a0ea03bd 100644 --- a/fs/adfs/adfs.h +++ b/fs/adfs/adfs.h @@ -1,4 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ +#include <linux/buffer_head.h> #include <linux/fs.h> #include <linux/adfs_fs.h> @@ -18,8 +19,6 @@ #include "dir_f.h" -struct buffer_head; - /* * adfs file system inode data in memory */ @@ -195,3 +194,10 @@ __adfs_block_map(struct super_block *sb, unsigned int object_id, return adfs_map_lookup(sb, object_id >> 8, block); } + +/* Return the disc record from the map */ +static inline +struct adfs_discrecord *adfs_map_discrecord(struct adfs_discmap *dm) +{ + return (void *)(dm[0].dm_bh->b_data + 4); +} |