diff options
author | David Sterba | 2013-04-30 19:29:29 +0200 |
---|---|---|
committer | Josef Bacik | 2013-05-17 22:27:25 +0200 |
commit | 60b62978bc5e903cd487de34972fb30f76c74a2e (patch) | |
tree | a04ad64764f0ed410c73d59d38844e7854b615b7 /fs/btrfs/disk-io.c | |
parent | Btrfs: allow superblock mismatch from older mkfs (diff) | |
download | kernel-qcow2-linux-60b62978bc5e903cd487de34972fb30f76c74a2e.tar.gz kernel-qcow2-linux-60b62978bc5e903cd487de34972fb30f76c74a2e.tar.xz kernel-qcow2-linux-60b62978bc5e903cd487de34972fb30f76c74a2e.zip |
btrfs: annotate quota tree for lockdep
Quota tree has been missing from lockdep annotations, though no warning
has been seen in the wild.
There's currently one entry that does not belong there,
BTRFS_ORPHAN_OBJECTID. No such tree exists, it's probably a copy &
paste mistake, the id is defined among tree ids.
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Diffstat (limited to 'fs/btrfs/disk-io.c')
-rw-r--r-- | fs/btrfs/disk-io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 4e9ebe1f1827..72b17276c255 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -152,7 +152,7 @@ static struct btrfs_lockdep_keyset { { .id = BTRFS_DEV_TREE_OBJECTID, .name_stem = "dev" }, { .id = BTRFS_FS_TREE_OBJECTID, .name_stem = "fs" }, { .id = BTRFS_CSUM_TREE_OBJECTID, .name_stem = "csum" }, - { .id = BTRFS_ORPHAN_OBJECTID, .name_stem = "orphan" }, + { .id = BTRFS_QUOTA_TREE_OBJECTID, .name_stem = "quota" }, { .id = BTRFS_TREE_LOG_OBJECTID, .name_stem = "log" }, { .id = BTRFS_TREE_RELOC_OBJECTID, .name_stem = "treloc" }, { .id = BTRFS_DATA_RELOC_TREE_OBJECTID, .name_stem = "dreloc" }, |