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 73798C001DC for ; Mon, 17 Jul 2023 13:43:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231467AbjGQNni (ORCPT ); Mon, 17 Jul 2023 09:43:38 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51802 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229796AbjGQNng (ORCPT ); Mon, 17 Jul 2023 09:43:36 -0400 Received: from ms.lwn.net (ms.lwn.net [IPv6:2600:3c01:e000:3a1::42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6581694; Mon, 17 Jul 2023 06:43:34 -0700 (PDT) Received: from localhost (unknown [IPv6:2601:281:8300:73::5f6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id B295D2C0; Mon, 17 Jul 2023 13:43:33 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net B295D2C0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1689601413; bh=gfGH++kob3AOtPuAhETDkE/EY5vmMzF/KJo8XLPMBOY=; h=From:To:Subject:In-Reply-To:References:Date:From; b=TPXYhG6wvQWdMlwPpPl4WZZj/NCAvmxHnvo4v6fkU6F3FPLqFIEHsVNAK899SxU2u Vtec5DiUh+AvPnup2ZH8ktLGVuKBOk9CZqraBGvB+sqR7F9FV7Mgp3ee4zi2KH870x 7K/avmcyrsekvjZeAhvP9khbrzgVCDvCMdlFp/FNr590cmvpQcPbqBL4wXClBkRVjt Pbpl9390rxKymOA1UCNL7bcarBLzeuyB8DMGS9JpdiXxWmiPDF/E1yw0kL9/VUcySg omRbAh12twH+dIJERoYFxuuiBWQffe3Pgac3q8/u3nDYfya1Lv3NSGKH0c2fU0Vggz ZTy9eJ7uB33pw== From: Jonathan Corbet To: Costa Shulyupin , Huacai Chen , WANG Xuerui , Alex Shi , Yanteng Si , Alexandre TORGUE , Max Filippov , Costa Shulyupin , Tiezhu Yang , Wu XiangCheng , "open list:DOCUMENTATION" , open list , "open list:LOONGARCH" Subject: Re: [PATCH] docs: move loongarch under arch In-Reply-To: <20230717070643.313689-1-costa.shul@redhat.com> References: <20230717070643.313689-1-costa.shul@redhat.com> Date: Mon, 17 Jul 2023 07:43:32 -0600 Message-ID: <87mszuwt4r.fsf@meer.lwn.net> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Costa Shulyupin writes: > and fix all in-tree references. > > Architecture-specific documentation is being moved into Documentation/arch/ > as a way of cleaning up the top-level documentation directory and making > the docs hierarchy more closely match the source hierarchy. > > Signed-off-by: Costa Shulyupin > --- > Documentation/arch/index.rst | 2 +- > Documentation/{ => arch}/loongarch/booting.rst | 0 > Documentation/{ => arch}/loongarch/features.rst | 0 > Documentation/{ => arch}/loongarch/index.rst | 0 > Documentation/{ => arch}/loongarch/introduction.rst | 0 > Documentation/{ => arch}/loongarch/irq-chip-model.rst | 0 > Documentation/translations/zh_CN/arch/index.rst | 2 +- > .../translations/zh_CN/{ => arch}/loongarch/booting.rst | 4 ++-- > .../translations/zh_CN/{ => arch}/loongarch/features.rst | 4 ++-- > .../translations/zh_CN/{ => arch}/loongarch/index.rst | 4 ++-- > .../translations/zh_CN/{ => arch}/loongarch/introduction.rst | 4 ++-- > .../zh_CN/{ => arch}/loongarch/irq-chip-model.rst | 4 ++-- > 12 files changed, 12 insertions(+), 12 deletions(-) > rename Documentation/{ => arch}/loongarch/booting.rst (100%) > rename Documentation/{ => arch}/loongarch/features.rst (100%) > rename Documentation/{ => arch}/loongarch/index.rst (100%) > rename Documentation/{ => arch}/loongarch/introduction.rst (100%) > rename Documentation/{ => arch}/loongarch/irq-chip-model.rst (100%) > rename Documentation/translations/zh_CN/{ => arch}/loongarch/booting.rst (94%) > rename Documentation/translations/zh_CN/{ => arch}/loongarch/features.rst (61%) > rename Documentation/translations/zh_CN/{ => arch}/loongarch/index.rst (78%) > rename Documentation/translations/zh_CN/{ => arch}/loongarch/introduction.rst (99%) > rename Documentation/translations/zh_CN/{ => arch}/loongarch/irq-chip-model.rst (98%) A couple of things: - I'm slowly working in this area...indeed, I have a loongarch move already done, I just haven't posted it yet. So please talk to me if you want to do more of these. - If you do a move like this, you need to fix up the collateral damage. There are references to Documentation/loongarch in MAINTAINERS and drivers/irqchip/Kconfig that need to be fixed as well. Thanks, jon