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=-4.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS autolearn=no 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 A90E1C2BA19 for ; Thu, 16 Apr 2020 02:00:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7710320725 for ; Thu, 16 Apr 2020 02:00:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1587002426; bh=5bHgMxkxq5OoYHIzY8aB3H41HjFShB2x1gkOMnn4UaY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=AV7qXVYKtqg8K3eE+tK49cx2r+OG7dxbwyPDbvYLyMSUQdYJIu3gGwug8LnrN8jub MxmsLxmj2eaO///tEBP9Jki7TEIZQ1+b9FCsvonD0BSdIszd91GtiTPz/WPGsEZl6L i3CN+4+LKb78z2OELbw5b/DJkRjS4DvAVRwbao5I= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730474AbgDPCAW (ORCPT ); Wed, 15 Apr 2020 22:00:22 -0400 Received: from mail.kernel.org ([198.145.29.99]:57298 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729707AbgDPCAI (ORCPT ); Wed, 15 Apr 2020 22:00:08 -0400 Received: from sol.localdomain (c-107-3-166-239.hsd1.ca.comcast.net [107.3.166.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 3052E20725; Thu, 16 Apr 2020 02:00:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1587002408; bh=5bHgMxkxq5OoYHIzY8aB3H41HjFShB2x1gkOMnn4UaY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=FqdHtB2+f39HOV/1KklFM7kz2IRs+UE4U5NEM24XS9qhVfSivSIuZu2tuH3Xmmil3 LUQqY9DdqLqivO4cFa7K7yf8QP2/g9w01Gmuc0HGVKpLdEd7ITU9kG5HwQ7IqQ3RDj YPmJvSZmtXjFmvOcok3d51qugwUjcu7VkPVrgdZ0= Date: Wed, 15 Apr 2020 19:00:06 -0700 From: Eric Biggers To: Mauro Carvalho Chehab Cc: Linux Doc Mailing List , linux-kernel@vger.kernel.org, Jonathan Corbet , Alexander Viro , linux-fsdevel@vger.kernel.org Subject: Re: [PATCH 22/34] docs: filesystems: rename path-lookup.txt file Message-ID: <20200416020006.GC816@sol.localdomain> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Apr 15, 2020 at 04:32:35PM +0200, Mauro Carvalho Chehab wrote: > There are two files called "patch-lookup", with different contents: > one is a ReST file, the other one is the text. > > As we'll be finishing the conversion of filesystem documents, > let's fist rename the text one, in order to avoid messing with > the existing ReST file. > > Signed-off-by: Mauro Carvalho Chehab > --- > .../filesystems/{path-lookup.txt => path-walking.txt} | 0 > Documentation/filesystems/porting.rst | 2 +- > fs/dcache.c | 6 +++--- > fs/namei.c | 2 +- > 4 files changed, 5 insertions(+), 5 deletions(-) > rename Documentation/filesystems/{path-lookup.txt => path-walking.txt} (100%) Wouldn't it make more sense to consolidate path-lookup.rst and path-lookup.txt into one file? The .txt one is less detailed and hasn't been updated since 2011, so maybe it should just be deleted? Perhaps there's something useful in it that should be salvaged, though. - Eric