From patchwork Sun Mar 24 07:12:17 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kernel test robot X-Patchwork-Id: 10867349 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 3E0AA1390 for ; Sun, 24 Mar 2019 07:12:57 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1BC522995B for ; Sun, 24 Mar 2019 07:12:57 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0AE1D2995D; Sun, 24 Mar 2019 07:12:57 +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=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 EB38C2944E for ; Sun, 24 Mar 2019 07:12:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728264AbfCXHMx (ORCPT ); Sun, 24 Mar 2019 03:12:53 -0400 Received: from mga17.intel.com ([192.55.52.151]:57615 "EHLO mga17.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727904AbfCXHMx (ORCPT ); Sun, 24 Mar 2019 03:12:53 -0400 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; 24 Mar 2019 00:12:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,256,1549958400"; d="scan'208";a="143343246" Received: from lkp-server01.sh.intel.com (HELO lkp-server01) ([10.239.97.150]) by FMSMGA003.fm.intel.com with ESMTP; 24 Mar 2019 00:12:52 -0700 Received: from kbuild by lkp-server01 with local (Exim 4.89) (envelope-from ) id 1h7xJL-000CLb-VC; Sun, 24 Mar 2019 15:12:51 +0800 Date: Sun, 24 Mar 2019 15:12:17 +0800 From: kbuild test robot To: Luis Henriques Cc: kbuild-all@01.org, ceph-devel@vger.kernel.org, "Yan, Zheng" Subject: [RFC PATCH ceph-client] ceph: quota: ceph_find_quotarealm_inode() can be static Message-ID: <20190324071217.GA73367@athens> References: <201903241549.6il1QO27%lkp@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <201903241549.6il1QO27%lkp@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: ceph-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: ceph-devel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Fixes: 791cff936c81 ("ceph: quota: fix quota subdir mounts") Signed-off-by: kbuild test robot --- quota.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/ceph/quota.c b/fs/ceph/quota.c index 9dffe84..077ebe7 100644 --- a/fs/ceph/quota.c +++ b/fs/ceph/quota.c @@ -77,7 +77,7 @@ void ceph_handle_quota(struct ceph_mds_client *mdsc, iput(inode); } -struct ceph_quotarealm_inode *ceph_find_quotarealm_inode( +static struct ceph_quotarealm_inode *ceph_find_quotarealm_inode( struct ceph_mds_client *mdsc, u64 ino) { struct ceph_quotarealm_inode *qri = NULL;