From patchwork Fri Feb 16 07:01:08 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fengguang Wu X-Patchwork-Id: 10224107 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 55DB2602CB for ; Fri, 16 Feb 2018 07:02:20 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 376A92949A for ; Fri, 16 Feb 2018 07:02:20 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2BE02294AD; Fri, 16 Feb 2018 07:02:20 +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=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham 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 A37282949A for ; Fri, 16 Feb 2018 07:02:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753419AbeBPHBR (ORCPT ); Fri, 16 Feb 2018 02:01:17 -0500 Received: from mga17.intel.com ([192.55.52.151]:33347 "EHLO mga17.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753416AbeBPHBR (ORCPT ); Fri, 16 Feb 2018 02:01:17 -0500 X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 15 Feb 2018 23:01:14 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,519,1511856000"; d="scan'208";a="27736756" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by FMSMGA003.fm.intel.com with ESMTP; 15 Feb 2018 23:01:14 -0800 Received: from kbuild by bee with local (Exim 4.84_2) (envelope-from ) id 1ema1N-0003YK-2i; Fri, 16 Feb 2018 15:01:25 +0800 Date: Fri, 16 Feb 2018 15:01:08 +0800 From: kbuild test robot To: Josef Bacik Cc: kbuild-all@01.org, linux-btrfs@vger.kernel.org Subject: [RFC PATCH josef-btrfs] block: blkcg_qos_init() can be static Message-ID: <20180216070108.GA17588@lkp-wsm-ep1> References: <201802161335.keR3zHOI%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <201802161335.keR3zHOI%fengguang.wu@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Fixes: 6389939532e7 ("block: introduce blkcg-qos io controller") Signed-off-by: Fengguang Wu --- blkcg-qos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/block/blkcg-qos.c b/block/blkcg-qos.c index a28adcc..6588b1c 100644 --- a/block/blkcg-qos.c +++ b/block/blkcg-qos.c @@ -337,7 +337,7 @@ static struct rq_qos_ops blkcg_qos_ops = { .done_bio = blkcg_qos_done_bio, }; -int blkcg_qos_init(struct request_queue *q) +static int blkcg_qos_init(struct request_queue *q) { struct blkcg_qos *blkqos; struct rq_qos *rqos;