search for: btrfs_disk_k

Displaying 1 result from an estimated 1 matches for "btrfs_disk_k".

Did you mean: btrfs_disk_key
2009 Jul 23
1
[PATCH] Remove code duplication in comp_keys
...(+), 13 deletions(-) Index: linux/fs/btrfs/ctree.c =================================================================== --- linux.orig/fs/btrfs/ctree.c 2009-07-24 00:47:20.936410297 +0200 +++ linux/fs/btrfs/ctree.c 2009-07-24 00:48:02.368160146 +0200 @@ -557,19 +557,7 @@ static int comp_keys(struct btrfs_disk_k btrfs_disk_key_to_cpu(&k1, disk); - if (k1.objectid > k2->objectid) - return 1; - if (k1.objectid < k2->objectid) - return -1; - if (k1.type > k2->type) - return 1; - if (k1.type < k2->type) - return -1; - if (k1.offset > k2->offset) - return 1; - if (k1...