From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4DEA5C4338F for ; Wed, 25 Aug 2021 05:45:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2146861212 for ; Wed, 25 Aug 2021 05:45:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234628AbhHYFqT (ORCPT ); Wed, 25 Aug 2021 01:46:19 -0400 Received: from mga05.intel.com ([192.55.52.43]:31954 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232096AbhHYFqM (ORCPT ); Wed, 25 Aug 2021 01:46:12 -0400 X-IronPort-AV: E=McAfee;i="6200,9189,10086"; a="303036143" X-IronPort-AV: E=Sophos;i="5.84,349,1620716400"; d="scan'208";a="303036143" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Aug 2021 22:45:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.84,349,1620716400"; d="scan'208";a="536152945" Received: from lkp-server02.sh.intel.com (HELO 181e7be6f509) ([10.239.97.151]) by fmsmga002.fm.intel.com with ESMTP; 24 Aug 2021 22:45:26 -0700 Received: from kbuild by 181e7be6f509 with local (Exim 4.92) (envelope-from ) id 1mIlj3-0001Dv-NG; Wed, 25 Aug 2021 05:45:25 +0000 Date: Wed, 25 Aug 2021 13:44:26 +0800 From: kernel test robot To: Allison Collins Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org, "Darrick J. Wong" Subject: [RFC PATCH allisonhenderson-xfs_work] xfs: fix duplicated inclusion Message-ID: <20210825054426.GA80779@a1e6d6d8b5f2> References: <202108251318.k75imb22-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202108251318.k75imb22-lkp@intel.com> X-Patchwork-Hint: ignore fs/xfs/libxfs/xfs_attr.c: xfs_attr.h is included more than once. User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Generated by: scripts/checkincludes.pl Reported-by: kernel test robot Signed-off-by: kernel test robot --- xfs_attr.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/xfs/libxfs/xfs_attr.c b/fs/xfs/libxfs/xfs_attr.c index 6877683e2e35d..33f794fa55600 100644 --- a/fs/xfs/libxfs/xfs_attr.c +++ b/fs/xfs/libxfs/xfs_attr.c @@ -18,7 +18,6 @@ #include "xfs_trans.h" #include "xfs_bmap.h" #include "xfs_bmap_btree.h" -#include "xfs_attr.h" #include "xfs_attr_leaf.h" #include "xfs_attr_remote.h" #include "xfs_quota.h"