bcache: fix indent by replacing blank by tabs
authorColy Li <[email protected]>
Sat, 11 Aug 2018 05:19:50 +0000 (13:19 +0800)
committerJens Axboe <[email protected]>
Sat, 11 Aug 2018 21:46:41 +0000 (15:46 -0600)
bch_btree_insert_check_key() has unaligned indent, or indent by blank
characters. This patch makes the indent aligned and replace blank by
tabs.

Signed-off-by: Coly Li <[email protected]>
Reviewed-by: Shenghui Wang <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
drivers/md/bcache/btree.c

index c2e4174a2e039bd8113c8c64faf75d0c61c926e5..e7d4817681f223f456330f9c63eb6e958f2b9a76 100644 (file)
@@ -2231,10 +2231,10 @@ int bch_btree_insert_check_key(struct btree *b, struct btree_op *op,
                rw_lock(true, b, b->level);
 
                if (b->key.ptr[0] != btree_ptr ||
-                   b->seq != seq + 1) {
+                   b->seq != seq + 1) {
                        op->lock = b->level;
                        goto out;
-               }
+               }
        }
 
        SET_KEY_PTRS(check_key, 1);