From patchwork Thu Oct 1 22:26:24 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kernel test robot X-Patchwork-Id: 7312141 Return-Path: X-Original-To: patchwork-linux-btrfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 13FCC9F314 for ; Thu, 1 Oct 2015 22:28:21 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 48E4E207D7 for ; Thu, 1 Oct 2015 22:28:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 313D6207D5 for ; Thu, 1 Oct 2015 22:28:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751306AbbJAW2O (ORCPT ); Thu, 1 Oct 2015 18:28:14 -0400 Received: from mga11.intel.com ([192.55.52.93]:14081 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750718AbbJAW2N (ORCPT ); Thu, 1 Oct 2015 18:28:13 -0400 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 01 Oct 2015 15:28:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,619,1437462000"; d="scan'208";a="817484569" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by fmsmga002.fm.intel.com with ESMTP; 01 Oct 2015 15:28:12 -0700 Received: from kbuild by bee with local (Exim 4.83) (envelope-from ) id 1ZhmKW-0005DV-GM; Fri, 02 Oct 2015 06:28:00 +0800 Date: Fri, 2 Oct 2015 06:26:24 +0800 From: kbuild test robot To: Mark Fasheh Cc: kbuild-all@01.org, linux-btrfs@vger.kernel.org, jbacik@fb.com, clm@fb.com, david@fromorbit.com Subject: [RFC PATCH] btrfs: drop_status_lock can be static Message-ID: <20151001222624.GA2456@lkp-nex05> References: <201510020624.ABe5GlB7%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20151001213047.GB1044@wotan.suse.de> 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-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Fengguang Wu --- extent-tree.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/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c index 75f499e..0e9a9f1 100644 --- a/fs/btrfs/extent-tree.c +++ b/fs/btrfs/extent-tree.c @@ -8465,7 +8465,7 @@ static noinline int walk_up_tree(struct btrfs_trans_handle *trans, return 1; } -DEFINE_SPINLOCK(drop_status_lock); +static DEFINE_SPINLOCK(drop_status_lock); void btrfs_add_drop_status(struct btrfs_root *root) { struct btrfs_fs_info *fs_info = root->fs_info;