]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
bcache: add bcache_ prefix to btree_root() and btree() macros
authorColy Li <colyli@suse.de>
Sun, 22 Mar 2020 06:03:00 +0000 (14:03 +0800)
committerJens Axboe <axboe@kernel.dk>
Sun, 22 Mar 2020 16:06:57 +0000 (10:06 -0600)
This patch changes macro btree_root() and btree() to bcache_btree_root()
and bcache_btree(), to avoid potential generic name clash in future.

NOTE: for product kernel maintainers, this patch can be skipped if
you feel the rename stuffs introduce inconvenince to patch backport.

Suggested-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Coly Li <colyli@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/btree.c
drivers/md/bcache/btree.h

index 99cb201809afa6efa228001cda143b38cfbbb8f4..faf152524a16f93ff15fe3bd16c7820249db1edd 100644 (file)
@@ -1790,7 +1790,7 @@ static void bch_btree_gc(struct cache_set *c)
 
        /* if CACHE_SET_IO_DISABLE set, gc thread should stop too */
        do {
-               ret = btree_root(gc_root, c, &op, &writes, &stats);
+               ret = bcache_btree_root(gc_root, c, &op, &writes, &stats);
                closure_sync(&writes);
                cond_resched();
 
@@ -1888,7 +1888,7 @@ static int bch_btree_check_recurse(struct btree *b, struct btree_op *op)
                        }
 
                        if (p)
-                               ret = btree(check_recurse, p, b, op);
+                               ret = bcache_btree(check_recurse, p, b, op);
 
                        p = k;
                } while (p && !ret);
@@ -1903,7 +1903,7 @@ int bch_btree_check(struct cache_set *c)
 
        bch_btree_op_init(&op, SHRT_MAX);
 
-       return btree_root(check_recurse, c, &op);
+       return bcache_btree_root(check_recurse, c, &op);
 }
 
 void bch_initial_gc_finish(struct cache_set *c)
@@ -2343,7 +2343,7 @@ static int bch_btree_map_nodes_recurse(struct btree *b, struct btree_op *op,
 
                while ((k = bch_btree_iter_next_filter(&iter, &b->keys,
                                                       bch_ptr_bad))) {
-                       ret = btree(map_nodes_recurse, k, b,
+                       ret = bcache_btree(map_nodes_recurse, k, b,
                                    op, from, fn, flags);
                        from = NULL;
 
@@ -2361,7 +2361,7 @@ static int bch_btree_map_nodes_recurse(struct btree *b, struct btree_op *op,
 int __bch_btree_map_nodes(struct btree_op *op, struct cache_set *c,
                          struct bkey *from, btree_map_nodes_fn *fn, int flags)
 {
-       return btree_root(map_nodes_recurse, c, op, from, fn, flags);
+       return bcache_btree_root(map_nodes_recurse, c, op, from, fn, flags);
 }
 
 int bch_btree_map_keys_recurse(struct btree *b, struct btree_op *op,
@@ -2377,7 +2377,8 @@ int bch_btree_map_keys_recurse(struct btree *b, struct btree_op *op,
        while ((k = bch_btree_iter_next_filter(&iter, &b->keys, bch_ptr_bad))) {
                ret = !b->level
                        ? fn(op, b, k)
-                       : btree(map_keys_recurse, k, b, op, from, fn, flags);
+                       : bcache_btree(map_keys_recurse, k,
+                                      b, op, from, fn, flags);
                from = NULL;
 
                if (ret != MAP_CONTINUE)
@@ -2394,7 +2395,7 @@ int bch_btree_map_keys_recurse(struct btree *b, struct btree_op *op,
 int bch_btree_map_keys(struct btree_op *op, struct cache_set *c,
                       struct bkey *from, btree_map_keys_fn *fn, int flags)
 {
-       return btree_root(map_keys_recurse, c, op, from, fn, flags);
+       return bcache_btree_root(map_keys_recurse, c, op, from, fn, flags);
 }
 
 /* Keybuf code */
index f37153db3f6cb8ad28528583104f7e800f0c6bf0..19e30266070ac095ce8bb769ba68be41e2c77503 100644 (file)
@@ -309,7 +309,7 @@ static inline void force_wake_up_gc(struct cache_set *c)
  * @b:         parent btree node
  * @op:                pointer to struct btree_op
  */
-#define btree(fn, key, b, op, ...)                                     \
+#define bcache_btree(fn, key, b, op, ...)                              \
 ({                                                                     \
        int _r, l = (b)->level - 1;                                     \
        bool _w = l <= (op)->lock;                                      \
@@ -329,7 +329,7 @@ static inline void force_wake_up_gc(struct cache_set *c)
  * @c:         cache set
  * @op:                pointer to struct btree_op
  */
-#define btree_root(fn, c, op, ...)                                     \
+#define bcache_btree_root(fn, c, op, ...)                              \
 ({                                                                     \
        int _r = -EINTR;                                                \
        do {                                                            \