From patchwork Sat Aug 18 09:22:54 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fengguang Wu X-Patchwork-Id: 10569535 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 737BD15E2 for ; Sat, 18 Aug 2018 09:23:04 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6931B2AFD2 for ; Sat, 18 Aug 2018 09:23:04 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 53F952B015; Sat, 18 Aug 2018 09:23:04 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0526C2B015 for ; Sat, 18 Aug 2018 09:23:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726456AbeHRMaB (ORCPT ); Sat, 18 Aug 2018 08:30:01 -0400 Received: from mga09.intel.com ([134.134.136.24]:21255 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726453AbeHRMaB (ORCPT ); Sat, 18 Aug 2018 08:30:01 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 18 Aug 2018 02:23:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.53,255,1531810800"; d="scan'208";a="255922418" Received: from bee.sh.intel.com (HELO lkp-server01) ([10.239.97.14]) by fmsmga006.fm.intel.com with ESMTP; 18 Aug 2018 02:23:00 -0700 Received: from kbuild by lkp-server01 with local (Exim 4.89) (envelope-from ) id 1fqxRk-00087t-Di; Sat, 18 Aug 2018 17:23:00 +0800 Date: Sat, 18 Aug 2018 17:22:54 +0800 From: kbuild test robot To: Sagi Grimberg Cc: kbuild-all@01.org, linux-block@vger.kernel.org, linux-rdma@vger.kernel.org, linux-nvme@lists.infradead.org, Christoph Hellwig , Steve Wise , Max Gurtovoy Subject: [PATCH] block: fix semicolon.cocci warnings Message-ID: <20180818092253.GA76076@xian> References: <20180817223823.19566-1-sagi@grimberg.me> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20180817223823.19566-1-sagi@grimberg.me> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: kbuild test robot block/blk-mq-rdma.c:105:34-35: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Fixes: 4f5388d0fa49 ("block: fix rdma queue mapping") CC: Sagi Grimberg Signed-off-by: kbuild test robot --- blk-mq-rdma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/block/blk-mq-rdma.c +++ b/block/blk-mq-rdma.c @@ -102,7 +102,7 @@ int blk_mq_rdma_map_queues(struct blk_mq /* map any remaining unmapped cpus */ for_each_possible_cpu(cpu) { if (set->mq_map[cpu] == UINT_MAX) - blk_mq_map_queue_cpu(set, cpu);; + blk_mq_map_queue_cpu(set, cpu); } return 0;