Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1428339 > unrolled thread

[RESEND PATCH 1/3] bcache: Remove redundant parameter for cache_alloc()

Started byYijing Wang <wangyijing@huawei.com>
First post2016-06-22 04:10 +0200
Last post2016-06-22 04:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [RESEND PATCH 1/3] bcache: Remove redundant parameter for cache_alloc() Yijing Wang <wangyijing@huawei.com> - 2016-06-22 04:10 +0200

#1428339 — [RESEND PATCH 1/3] bcache: Remove redundant parameter for cache_alloc()

FromYijing Wang <wangyijing@huawei.com>
Date2016-06-22 04:10 +0200
Subject[RESEND PATCH 1/3] bcache: Remove redundant parameter for cache_alloc()
Message-ID<rMFM6-5BD-13@gated-at.bofh.it>
Cache_sb is not used in cache_alloc, and we have copied
sb info to cache->sb already, remove it.

Signed-off-by: Yijing Wang <wangyijing@huawei.com>
---
 drivers/md/bcache/super.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c
index f5dbb4e..aecaace 100644
--- a/drivers/md/bcache/super.c
+++ b/drivers/md/bcache/super.c
@@ -1803,7 +1803,7 @@ void bch_cache_release(struct kobject *kobj)
 	module_put(THIS_MODULE);
 }
 
-static int cache_alloc(struct cache_sb *sb, struct cache *ca)
+static int cache_alloc(struct cache *ca)
 {
 	size_t free;
 	struct bucket *b;
@@ -1858,7 +1858,7 @@ static int register_cache(struct cache_sb *sb, struct page *sb_page,
 	if (blk_queue_discard(bdev_get_queue(ca->bdev)))
 		ca->discard = CACHE_DISCARD(&ca->sb);
 
-	ret = cache_alloc(sb, ca);
+	ret = cache_alloc(ca);
 	if (ret != 0)
 		goto err;
 
-- 
1.7.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web