summaryrefslogtreecommitdiffstats
path: root/fs/udf/udf_sb.h
diff options
context:
space:
mode:
authorMarcin Slusarz2008-02-08 13:20:34 +0100
committerLinus Torvalds2008-02-08 18:22:35 +0100
commit883cb9d1842a37c6eed77f2c64792d35048c1e8d (patch)
treee0c95015c8721868dab0d060385aec18164718a6 /fs/udf/udf_sb.h
parentudf: convert macros related to bitmaps to functions (diff)
downloadkernel-qcow2-linux-883cb9d1842a37c6eed77f2c64792d35048c1e8d.tar.gz
kernel-qcow2-linux-883cb9d1842a37c6eed77f2c64792d35048c1e8d.tar.xz
kernel-qcow2-linux-883cb9d1842a37c6eed77f2c64792d35048c1e8d.zip
udf: move calculating of nr_groups into helper function
Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Ben Fennema <bfennema@falcon.csc.calpoly.edu> Acked-by: Jan Kara <jack@suse.cz> Cc: Christoph Hellwig <hch@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/udf/udf_sb.h')
-rw-r--r--fs/udf/udf_sb.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/udf/udf_sb.h b/fs/udf/udf_sb.h
index 2c05f8277fd8..d9adb0fff84c 100644
--- a/fs/udf/udf_sb.h
+++ b/fs/udf/udf_sb.h
@@ -43,6 +43,8 @@ static inline struct udf_sb_info *UDF_SB(struct super_block *sb)
struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi);
+int udf_compute_nr_groups(struct super_block *sb, u32 partition);
+
#define UDF_QUERY_FLAG(X,Y) ( UDF_SB(X)->s_flags & ( 1 << (Y) ) )
#define UDF_SET_FLAG(X,Y) ( UDF_SB(X)->s_flags |= ( 1 << (Y) ) )
#define UDF_CLEAR_FLAG(X,Y) ( UDF_SB(X)->s_flags &= ~( 1 << (Y) ) )