diff options
author | Marcin Slusarz <marcin.slusarz@gmail.com> | 2008-02-08 07:20:42 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:35 -0500 |
commit | c0b344385fa05f6bea462e707fcba89f9e2776c2 (patch) | |
tree | 391376739ffb0b5c9dfcf294c9f746d7ff2daf66 /fs/udf/super.c | |
parent | 5e0f001736651f6f859aeca95f895c829d223cdb (diff) |
udf: remove UDF_I_* macros and open code them
Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com>
Acked-by: Jan Kara <jack@suse.cz>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/udf/super.c')
-rw-r--r-- | fs/udf/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/super.c b/fs/udf/super.c index b10295865e5a..52d2c32b6c7b 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c | |||
@@ -2046,7 +2046,7 @@ static unsigned int udf_count_free_table(struct super_block *sb, | |||
2046 | 2046 | ||
2047 | lock_kernel(); | 2047 | lock_kernel(); |
2048 | 2048 | ||
2049 | epos.block = UDF_I_LOCATION(table); | 2049 | epos.block = UDF_I(table)->i_location; |
2050 | epos.offset = sizeof(struct unallocSpaceEntry); | 2050 | epos.offset = sizeof(struct unallocSpaceEntry); |
2051 | epos.bh = NULL; | 2051 | epos.bh = NULL; |
2052 | 2052 | ||