diff options
author | Ingo Molnar <mingo@elte.hu> | 2006-08-27 01:23:56 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-08-27 11:01:32 -0700 |
commit | 4df46240a1312161e3c794f6ace50ef7eb5ff3d7 (patch) | |
tree | c32b0e6b32b79f8fbb8326743867b25ea483134d /include | |
parent | 36e8e5783297fbb83bdebe7e245ef659958f23cb (diff) | |
download | linux-3.10-4df46240a1312161e3c794f6ace50ef7eb5ff3d7.tar.gz linux-3.10-4df46240a1312161e3c794f6ace50ef7eb5ff3d7.tar.bz2 linux-3.10-4df46240a1312161e3c794f6ace50ef7eb5ff3d7.zip |
[PATCH] lockdep: annotate reiserfs
reiserfs seems to have another locking level layer for the i_mutex due to the
xattrs-are-a-directory thing.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 25610205c90..555bc195c42 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -570,13 +570,14 @@ struct inode { * 3: quota file * * The locking order between these classes is - * parent -> child -> normal -> quota + * parent -> child -> normal -> xattr -> quota */ enum inode_i_mutex_lock_class { I_MUTEX_NORMAL, I_MUTEX_PARENT, I_MUTEX_CHILD, + I_MUTEX_XATTR, I_MUTEX_QUOTA }; |