From patchwork Fri Jul 1 09:37:46 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: wangyijing X-Patchwork-Id: 71294 Delivered-To: patch@linaro.org Received: by 10.140.28.4 with SMTP id 4csp209270qgy; Fri, 1 Jul 2016 02:50:20 -0700 (PDT) X-Received: by 10.66.66.108 with SMTP id e12mr29834112pat.95.1467366620838; Fri, 01 Jul 2016 02:50:20 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id x9si3468361pfj.106.2016.07.01.02.50.20; Fri, 01 Jul 2016 02:50:20 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752867AbcGAJtc (ORCPT + 30 others); Fri, 1 Jul 2016 05:49:32 -0400 Received: from szxga03-in.huawei.com ([119.145.14.66]:36495 "EHLO szxga03-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752526AbcGAJtI (ORCPT ); Fri, 1 Jul 2016 05:49:08 -0400 Received: from 172.24.1.47 (EHLO SZXEML429-HUB.china.huawei.com) ([172.24.1.47]) by szxrg03-dlp.huawei.com (MOS 4.4.3-GA FastPath queued) with ESMTP id CEE66862; Fri, 01 Jul 2016 17:30:54 +0800 (CST) Received: from localhost.localdomain (10.175.100.166) by SZXEML429-HUB.china.huawei.com (10.82.67.184) with Microsoft SMTP Server id 14.3.235.1; Fri, 1 Jul 2016 17:30:44 +0800 From: Yijing Wang To: , Kent Overstreet CC: Eric Wheeler , Coly Li , , , , Yijing Wang Subject: [PATCH v2 1/3] bcache: Remove redundant parameter for cache_alloc() Date: Fri, 1 Jul 2016 17:37:46 +0800 Message-ID: <1467365866-16290-1-git-send-email-wangyijing@huawei.com> X-Mailer: git-send-email 1.7.1 MIME-Version: 1.0 X-Originating-IP: [10.175.100.166] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A090206.5776384E.00AE, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0, ip=0.0.0.0, so=2013-05-26 15:14:31, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: f1023ca47bbe0409cf3d9a6d50a6c96a Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Cache_sb is not used in cache_alloc, and we have copied sb info to cache->sb already, remove it. Reviewed-by: Coly Li Signed-off-by: Yijing Wang --- drivers/md/bcache/super.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) -- 1.7.1 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;