diff options
author | Christoph Hellwig <hch@tuxera.com> | 2010-11-23 08:38:13 -0500 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2010-11-23 08:38:13 -0500 |
commit | b33b7921db14abcd10c30d0ccfc68e364f5ef7fe (patch) | |
tree | 208810679b25995ba47f00bb1915a19f644931f5 /fs/hfsplus/super.c | |
parent | eb29d66d4f2dc98a81ae590bbdddc8cfa8964d73 (diff) |
hfsplus: split up inode flags
Split the flags field in the hfsplus inode into an extent_state
flag that is locked by the extent_lock, and a new flags field
that uses atomic bitops. The second will grow more flags in the
next patch.
Signed-off-by: Christoph Hellwig <hch@tuxera.com>
Diffstat (limited to 'fs/hfsplus/super.c')
-rw-r--r-- | fs/hfsplus/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/hfsplus/super.c b/fs/hfsplus/super.c index 56e6cf80c5e0..985423728e1d 100644 --- a/fs/hfsplus/super.c +++ b/fs/hfsplus/super.c | |||
@@ -66,6 +66,7 @@ struct inode *hfsplus_iget(struct super_block *sb, unsigned long ino) | |||
66 | INIT_LIST_HEAD(&HFSPLUS_I(inode)->open_dir_list); | 66 | INIT_LIST_HEAD(&HFSPLUS_I(inode)->open_dir_list); |
67 | mutex_init(&HFSPLUS_I(inode)->extents_lock); | 67 | mutex_init(&HFSPLUS_I(inode)->extents_lock); |
68 | HFSPLUS_I(inode)->flags = 0; | 68 | HFSPLUS_I(inode)->flags = 0; |
69 | HFSPLUS_I(inode)->extent_state = 0; | ||
69 | HFSPLUS_I(inode)->rsrc_inode = NULL; | 70 | HFSPLUS_I(inode)->rsrc_inode = NULL; |
70 | atomic_set(&HFSPLUS_I(inode)->opencnt, 0); | 71 | atomic_set(&HFSPLUS_I(inode)->opencnt, 0); |
71 | 72 | ||