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=-10.7 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 490D6C2B9F4 for ; Tue, 22 Jun 2021 19:55:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 28480611CE for ; Tue, 22 Jun 2021 19:55:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232565AbhFVT5v (ORCPT ); Tue, 22 Jun 2021 15:57:51 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35856 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231726AbhFVT5v (ORCPT ); Tue, 22 Jun 2021 15:57:51 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2D40AC061574 for ; Tue, 22 Jun 2021 12:55:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=kDvRdN9AuDwpYemr/zHFFc14vxjMOVAmwIvOyfUwgG8=; b=SXDhpaITZRKRNFUhG+fg7yyWbQ fHhxmKx8YtbKJNeOIfiQJmqbY2RJsbo/sxJ3t5/piZuvBRr8Vo6XexYixkECJ93921ZfidkAqljw8 w1tIV/fev91LFkjAOq2dTtyebzXU8JIV8CWm7+h0F4G/FgzUSTyxra0frMotaZGnkBNjDbuTqQslU 2CKT6dWDh/lzIn4y+n4UFS9BpGF9/5WrX9IzEZCWOykuMEu8Ohml/8q9cYNFModlBSqYjyczpbikN yg+PaGMndduai52UMk8YWU5Yiz9edVWDv1CzFd+EcdGYy/eib5otwIvIaYNx4AgZA43sd3emhQ5f+ a3LRZ5hg==; Received: from willy by casper.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1lvmUK-00EghN-C8; Tue, 22 Jun 2021 19:55:20 +0000 Date: Tue, 22 Jun 2021 20:55:12 +0100 From: Matthew Wilcox To: Keith Busch Cc: linux-fsdevel@vger.kernel.org, Miklos Szeredi , "Jens Axboe :" Subject: Re: [PATCH] vfs: explicitly include fileattr.h dependency Message-ID: References: <20210622194300.2617430-1-kbusch@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210622194300.2617430-1-kbusch@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Tue, Jun 22, 2021 at 12:43:00PM -0700, Keith Busch wrote: > 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)