From patchwork Fri Jul 1 09:38:08 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: wangyijing X-Patchwork-Id: 71296 Delivered-To: patch@linaro.org Received: by 10.140.28.4 with SMTP id 4csp209499qgy; Fri, 1 Jul 2016 02:51:00 -0700 (PDT) X-Received: by 10.67.3.7 with SMTP id bs7mr30099451pad.86.1467366660683; Fri, 01 Jul 2016 02:51:00 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id p186si3381647pfg.235.2016.07.01.02.51.00; Fri, 01 Jul 2016 02:51:00 -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 S1752807AbcGAJt3 (ORCPT + 30 others); Fri, 1 Jul 2016 05:49:29 -0400 Received: from szxga01-in.huawei.com ([58.251.152.64]:63859 "EHLO szxga01-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752493AbcGAJtI (ORCPT ); Fri, 1 Jul 2016 05:49:08 -0400 Received: from 172.24.1.36 (EHLO szxeml426-hub.china.huawei.com) ([172.24.1.36]) by szxrg01-dlp.huawei.com (MOS 4.3.7-GA FastPath queued) with ESMTP id DND40183; Fri, 01 Jul 2016 17:31:14 +0800 (CST) Received: from localhost.localdomain (10.175.100.166) by szxeml426-hub.china.huawei.com (10.82.67.181) with Microsoft SMTP Server id 14.3.235.1; Fri, 1 Jul 2016 17:31:03 +0800 From: Yijing Wang To: , Kent Overstreet CC: Eric Wheeler , Coly Li , , , , Yijing Wang Subject: [PATCH v2 3/3] bcache: Remove redundant block_size assignment Date: Fri, 1 Jul 2016 17:38:08 +0800 Message-ID: <1467365888-16388-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.0A020205.57763863.00D7, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0, ip=0.0.0.0, so=2013-06-18 04:22:30, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: e21af76f067bbe52f1628a93fea7efef Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org We have assigned sb->block_size before the switch, so remove the redundant one. Reviewed-by: Coly Li Signed-off-by: Yijing Wang Acked-by: Eric Wheeler --- drivers/md/bcache/super.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) -- 1.7.1 diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c index aecaace..bf4b100 100644 --- a/drivers/md/bcache/super.c +++ b/drivers/md/bcache/super.c @@ -134,7 +134,6 @@ static const char *read_super(struct cache_sb *sb, struct block_device *bdev, case BCACHE_SB_VERSION_CDEV: case BCACHE_SB_VERSION_CDEV_WITH_UUID: sb->nbuckets = le64_to_cpu(s->nbuckets); - sb->block_size = le16_to_cpu(s->block_size); sb->bucket_size = le16_to_cpu(s->bucket_size); sb->nr_in_set = le16_to_cpu(s->nr_in_set);