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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 60F70C433F5 for ; Sun, 13 Mar 2022 01:57:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233392AbiCMBuM (ORCPT ); Sat, 12 Mar 2022 20:50:12 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35284 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233293AbiCMBuL (ORCPT ); Sat, 12 Mar 2022 20:50:11 -0500 Received: from zeniv-ca.linux.org.uk (zeniv-ca.linux.org.uk [IPv6:2607:5300:60:148a::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4DE48F1E96; Sat, 12 Mar 2022 17:49:05 -0800 (PST) Received: from viro by zeniv-ca.linux.org.uk with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1nTDM0-00AUhg-3u; Sun, 13 Mar 2022 01:49:04 +0000 Date: Sun, 13 Mar 2022 01:49:04 +0000 From: Al Viro To: Max Kellermann Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/4] include/pipe_fs_i.h: add missing #includes Message-ID: References: <20220225185431.2617232-1-max.kellermann@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220225185431.2617232-1-max.kellermann@gmail.com> Sender: Al Viro Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Feb 25, 2022 at 07:54:28PM +0100, Max Kellermann wrote: > diff --git a/include/linux/pipe_fs_i.h b/include/linux/pipe_fs_i.h > index c00c618ef290..0e36a58adf0e 100644 > --- a/include/linux/pipe_fs_i.h > +++ b/include/linux/pipe_fs_i.h > @@ -2,6 +2,9 @@ > #ifndef _LINUX_PIPE_FS_I_H > #define _LINUX_PIPE_FS_I_H > > +#include > +#include TBH, I'd rather avoid breeding chain includes; sure, mutex.h and wait.h are extremely common anyway. Oh, well....