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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BC4EAC433F5 for ; Fri, 1 Oct 2021 23:39:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9821861A8E for ; Fri, 1 Oct 2021 23:39:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231953AbhJAXlS (ORCPT ); Fri, 1 Oct 2021 19:41:18 -0400 Received: from mail.kernel.org ([198.145.29.99]:44638 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230368AbhJAXlQ (ORCPT ); Fri, 1 Oct 2021 19:41:16 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 91E4C619F5; Fri, 1 Oct 2021 23:39:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1633131571; bh=deaurehqMN/DfBhFHASQPAcnai0N7/DCFk9nAG4JSVI=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=T7PFE7BR1bGHU6uRDqm/dH/MqG3pshEvnpe3K+tEmyxQOQZq3fRyG/sIA7fdE7kYF 2ergbf/D18Np1m6iDONjkyabmCG6W9p/VmEu6OgfzXgdt1nOi0LwbFQ3nxKX9jSubk lpCtQS29yw2sghL1BdKHpI0fBWrgZS9ZTXkctP+8= Date: Fri, 1 Oct 2021 16:39:31 -0700 From: Andrew Morton To: Andy Shevchenko Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Alexander Viro , jic23@kernel.org Subject: Re: [PATCH v1 1/1] seq_file: Move seq_escape() to a header Message-Id: <20211001163931.e3bb7bf5a401fa982fda5bb2@linux-foundation.org> In-Reply-To: <20211001122917.67228-1-andriy.shevchenko@linux.intel.com> References: <20211001122917.67228-1-andriy.shevchenko@linux.intel.com> X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 1 Oct 2021 15:29:17 +0300 Andy Shevchenko wrote: > Move seq_escape() to the header as inliner. Some reason for doing this would be nice. Does it make the kernel smaller? Is this performance-sensitive? > --- a/include/linux/seq_file.h > +++ b/include/linux/seq_file.h > @@ -4,6 +4,7 @@ > > #include > #include > +#include Why was this added? > #include > #include > #include