aboutsummaryrefslogtreecommitdiffstats
path: root/fs/udf/udf_i.h
diff options
context:
space:
mode:
authormarcin.slusarz@gmail.com <marcin.slusarz@gmail.com>2008-01-30 16:03:59 -0500
committerJan Kara <jack@suse.cz>2008-04-17 08:22:29 -0400
commitd652eefb70142c64495f4188883f9dfc0430a96b (patch)
treea67a3ebbc01ee7c68c8ca90f616d2a282907fe64 /fs/udf/udf_i.h
parent1ab9278570077101d1e367399686be62b22c4019 (diff)
udf: replace udf_*_offset macros with functions
- translate udf_file_entry_alloc_offset macro into function - translate udf_ext0_offset macro into function - add comment about crypticly named fields in struct udf_inode_info Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf/udf_i.h')
-rw-r--r--fs/udf/udf_i.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/udf/udf_i.h b/fs/udf/udf_i.h
index d6d9a774a1c1..4f86b1d98a5d 100644
--- a/fs/udf/udf_i.h
+++ b/fs/udf/udf_i.h
@@ -12,8 +12,8 @@ struct udf_inode_info {
12 __u32 i_next_alloc_block; 12 __u32 i_next_alloc_block;
13 __u32 i_next_alloc_goal; 13 __u32 i_next_alloc_goal;
14 unsigned i_alloc_type : 3; 14 unsigned i_alloc_type : 3;
15 unsigned i_efe : 1; 15 unsigned i_efe : 1; /* extendedFileEntry */
16 unsigned i_use : 1; 16 unsigned i_use : 1; /* unallocSpaceEntry */
17 unsigned i_strat4096 : 1; 17 unsigned i_strat4096 : 1;
18 unsigned reserved : 26; 18 unsigned reserved : 26;
19 union { 19 union {