From patchwork Tue Jun 22 19:43:00 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Keith Busch X-Patchwork-Id: 12338417 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=-19.2 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT 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 05C6DC2B9F4 for ; Tue, 22 Jun 2021 19:43:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id DA3086135A for ; Tue, 22 Jun 2021 19:43:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232418AbhFVTpS (ORCPT ); Tue, 22 Jun 2021 15:45:18 -0400 Received: from mail.kernel.org ([198.145.29.99]:57430 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232631AbhFVTpS (ORCPT ); Tue, 22 Jun 2021 15:45:18 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id B7757608FE; Tue, 22 Jun 2021 19:43:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1624390982; bh=6pPcATNpiKvVpcsoTuMfmganPavsZFx87xngTk9YLXE=; h=From:To:Cc:Subject:Date:From; b=Ki9mZTmuEfN65nJCdmUdfAKbeZd74NHkrT9wAxHO8NRaQO/Ww4dL2q+wprunUDUAY l+KD2H4tIUhy3kWu5aVpOkuTgjKACbU4dn/Q6Se3xl7Vrd6pTf9/N9M6loXoFaAWzX eZxcPGv7PbiDFOpAHIyeUnnK2rfCTx4oKEJVHfvAMBv2nh7kAGlVWJMY5m6KvOEvak vbz5KaEDAlYdLqRWEHhMT1UZ9vfYt/GJaQmWfzKmtYXL6Y4wBGYQsa31wqiRlNi/WG jJKySn++1JJLkWlhSR33rD5TMqu/uVYFCcPCnN9+sMmZdRohOq8XfzV9SThKN0xWot +/I5JfVEFSk9A== From: Keith Busch To: linux-fsdevel@vger.kernel.org Cc: Keith Busch , Miklos Szeredi , Matthew Wilcox , "Jens Axboe :" Subject: [PATCH] vfs: explicitly include fileattr.h dependency Date: Tue, 22 Jun 2021 12:43:00 -0700 Message-Id: <20210622194300.2617430-1-kbusch@kernel.org> X-Mailer: git-send-email 2.25.4 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org linux/fileattr.h has an implicit requirement that linux/fs.h be included first. Make that dependency explicit. Cc: Miklos Szeredi Cc: Matthew Wilcox Cc: Jens Axboe: Signed-off-by: Keith Busch Reviewed-by: Matthew Wilcox (Oracle) Reviewed-by: Jens Axboe --- include/linux/fileattr.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/linux/fileattr.h b/include/linux/fileattr.h index 9e37e063ac69..34e153172a85 100644 --- a/include/linux/fileattr.h +++ b/include/linux/fileattr.h @@ -3,6 +3,8 @@ #ifndef _LINUX_FILEATTR_H #define _LINUX_FILEATTR_H +#include + /* Flags shared betwen flags/xflags */ #define FS_COMMON_FL \ (FS_SYNC_FL | FS_IMMUTABLE_FL | FS_APPEND_FL | \