diff options
author | Jan Kara <jack@suse.cz> | 2009-08-20 18:26:52 +0200 |
---|---|---|
committer | Joel Becker <joel.becker@oracle.com> | 2009-08-20 16:41:53 -0700 |
commit | a8b88d3d49623ac701b5dc996cbd61219c793c7c (patch) | |
tree | 3eae2cbcb6e61b1af9902ff1ad7a8780d3c02b63 /fs/ocfs2 | |
parent | 5fd131893793567c361ae64cbeb28a2a753bbe35 (diff) | |
download | linux-3.10-a8b88d3d49623ac701b5dc996cbd61219c793c7c.tar.gz linux-3.10-a8b88d3d49623ac701b5dc996cbd61219c793c7c.tar.bz2 linux-3.10-a8b88d3d49623ac701b5dc996cbd61219c793c7c.zip |
ocfs2: Add missing lock name
There is missing name for NFSSync cluster lock. This makes lockdep unhappy
because we end up passing NULL to lockdep when initializing lock key. Fix it.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/ocfs2_lockid.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ocfs2/ocfs2_lockid.h b/fs/ocfs2/ocfs2_lockid.h index fcdba091af3..c212cf5a2bd 100644 --- a/fs/ocfs2/ocfs2_lockid.h +++ b/fs/ocfs2/ocfs2_lockid.h @@ -108,6 +108,7 @@ static char *ocfs2_lock_type_strings[] = { [OCFS2_LOCK_TYPE_OPEN] = "Open", [OCFS2_LOCK_TYPE_FLOCK] = "Flock", [OCFS2_LOCK_TYPE_QINFO] = "Quota", + [OCFS2_LOCK_TYPE_NFS_SYNC] = "NFSSync", [OCFS2_LOCK_TYPE_ORPHAN_SCAN] = "OrphanScan", }; |