From patchwork Mon Jul 4 01:23:41 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: wangyijing X-Patchwork-Id: 71333 Delivered-To: patch@linaro.org Received: by 10.140.28.4 with SMTP id 4csp1326397qgy; Sun, 3 Jul 2016 18:17:13 -0700 (PDT) X-Received: by 10.66.49.134 with SMTP id u6mr18249598pan.118.1467595033466; Sun, 03 Jul 2016 18:17:13 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id a2si1032348paf.153.2016.07.03.18.17.13; Sun, 03 Jul 2016 18:17:13 -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 S932469AbcGDBQw (ORCPT + 30 others); Sun, 3 Jul 2016 21:16:52 -0400 Received: from szxga01-in.huawei.com ([58.251.152.64]:51454 "EHLO szxga01-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932438AbcGDBQu (ORCPT ); Sun, 3 Jul 2016 21:16:50 -0400 Received: from 172.24.1.136 (EHLO szxeml426-hub.china.huawei.com) ([172.24.1.136]) by szxrg01-dlp.huawei.com (MOS 4.3.7-GA FastPath queued) with ESMTP id DNF25724; Mon, 04 Jul 2016 09:16:47 +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; Mon, 4 Jul 2016 09:16:37 +0800 From: Yijing Wang To: , Kent Overstreet CC: Eric Wheeler , Coly Li , , , , Yijing Wang Subject: [PATCH v3 3/3] bcache: Remove redundant block_size assignment Date: Mon, 4 Jul 2016 09:23:41 +0800 Message-ID: <1467595421-20900-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.0A090201.5779B8FF.008B, 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: b245a58eae7a05ae2156df9b0bda03ac 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);