From nobody Thu Dec 18 09:08:05 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 089A51A01B6; Mon, 24 Jun 2024 18:53:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1719255202; cv=none; b=OzAQG241k6DpGMocSVNNnlO9z1x4TYSN9I+raULBNNw/0oWYDnLuMF969CpgIXZZXXNGKbCOwyftdJHUw9wflsP9QJivv4SkLUbW5O7zFzFV9Xhgv9i5PaNuPie8IPA4PIcDQX7xUZQwGHr8PaIsBpWPNilSwf6Dec3CxZ5jr0E= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1719255202; c=relaxed/simple; bh=bsgX1CZdQ7bAv/ZyedwgOWgKCDu8tkAKHzDRbVhGwKQ=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version:Content-Type; b=OJjHB7o5w4hu4jLWCzTjfkg0zVMYxQoOSopmTgt/0VPI2ZVjfYI6zYATvrnuqOfETBDM07Y5pw7S0u7aS82zO0HZKnYeSJEpZyBDTrQPiaoY6Iw+MWsla85uOOcBqIX/IfBYPPAscNHrit3mTdh4i5yFWY8RFoqntHHLbQMmZYM= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=fLJhs6QE; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="fLJhs6QE" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0BAB6C32789; Mon, 24 Jun 2024 18:53:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1719255201; bh=bsgX1CZdQ7bAv/ZyedwgOWgKCDu8tkAKHzDRbVhGwKQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=fLJhs6QE3VGeFaJzqLwGtlNzoG8n/bzJ5DlzwyCVds6TyEQGeFK/xUEb36snxq+Fj FBePkeJ6+0FtPhls9agb5iP2w3r092jqJGz7fishcs3FWelXjH8nhq4gteVM2/FHP8 NXxWZkjxdAXWn6XiCWIM0tXD1DDB8P6pUxv0rR752a+bptadL+OaiwmrBp4AvQwmAW nKsvve87uyemGGmsOtXH08oxg0tejienkTiyMtBDOK3vYK+pmTXByKfaHVsg7cfjsA laKsmlYQN5Vft4Pq52YKo2/m5QFpBFeQUwwrlWFPmGy5vo+FmB5/LYcTO+E5V3Hov5 BMznH9KlybWnQ== From: SeongJae Park To: Jonathan Corbet Cc: SeongJae Park , Federico Vaga , Carlos Bilbao , Avadhut Naik , Alex Shi , Yanteng Si , Hu Haowen <2023002089@link.tyut.edu.cn>, workflows@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 3/7] Docs: Move magic-number from process to staging Date: Mon, 24 Jun 2024 11:53:08 -0700 Message-Id: <20240624185312.94537-4-sj@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240624185312.94537-1-sj@kernel.org> References: <20240624185312.94537-1-sj@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable 'Other material' section on 'process/index' is for unsorted documents. However we also have a dedicated place for the purpose, 'staging/'. Move 'magic-number' from the section to 'staging/' directory. Signed-off-by: SeongJae Park Acked-by: Federico Vaga --- Documentation/process/index.rst | 1 - Documentation/staging/index.rst | 1 + Documentation/{process =3D> staging}/magic-number.rst | 0 Documentation/translations/it_IT/process/magic-number.rst | 2 +- Documentation/translations/sp_SP/process/magic-number.rst | 2 +- Documentation/translations/zh_CN/process/magic-number.rst | 2 +- Documentation/translations/zh_TW/process/magic-number.rst | 2 +- 7 files changed, 5 insertions(+), 5 deletions(-) rename Documentation/{process =3D> staging}/magic-number.rst (100%) diff --git a/Documentation/process/index.rst b/Documentation/process/index.= rst index 08b4eb1e9118..fb089bf9d6a8 100644 --- a/Documentation/process/index.rst +++ b/Documentation/process/index.rst @@ -113,7 +113,6 @@ lack of a better place. .. toctree:: :maxdepth: 1 =20 - magic-number clang-format =20 .. only:: subproject and html diff --git a/Documentation/staging/index.rst b/Documentation/staging/index.= rst index 71592f3ce89b..77bae5e5328b 100644 --- a/Documentation/staging/index.rst +++ b/Documentation/staging/index.rst @@ -8,6 +8,7 @@ Unsorted Documentation =20 crc32 lzo + magic-number remoteproc rpmsg speculation diff --git a/Documentation/process/magic-number.rst b/Documentation/staging= /magic-number.rst similarity index 100% rename from Documentation/process/magic-number.rst rename to Documentation/staging/magic-number.rst diff --git a/Documentation/translations/it_IT/process/magic-number.rst b/Do= cumentation/translations/it_IT/process/magic-number.rst index ae92ab633c16..cd8f23571835 100644 --- a/Documentation/translations/it_IT/process/magic-number.rst +++ b/Documentation/translations/it_IT/process/magic-number.rst @@ -1,6 +1,6 @@ .. include:: ../disclaimer-ita.rst =20 -:Original: :ref:`Documentation/process/magic-number.rst ` +:Original: :ref:`Documentation/staging/magic-number.rst ` :Translator: Federico Vaga =20 .. _it_magicnumbers: diff --git a/Documentation/translations/sp_SP/process/magic-number.rst b/Do= cumentation/translations/sp_SP/process/magic-number.rst index 32a99aac2f6c..beb4b4c1de11 100644 --- a/Documentation/translations/sp_SP/process/magic-number.rst +++ b/Documentation/translations/sp_SP/process/magic-number.rst @@ -1,6 +1,6 @@ .. include:: ../disclaimer-sp.rst =20 -:Original: :ref:`Documentation/process/magic-number.rst ` +:Original: :ref:`Documentation/staging/magic-number.rst ` :Translator: Carlos Bilbao =20 .. _sp_magicnumbers: diff --git a/Documentation/translations/zh_CN/process/magic-number.rst b/Do= cumentation/translations/zh_CN/process/magic-number.rst index 4e4aeaca796c..4ebc84cc0c54 100644 --- a/Documentation/translations/zh_CN/process/magic-number.rst +++ b/Documentation/translations/zh_CN/process/magic-number.rst @@ -1,6 +1,6 @@ .. include:: ../disclaimer-zh_CN.rst =20 -:Original: Documentation/process/magic-number.rst +:Original: Documentation/staging/magic-number.rst =20 :=E7=BF=BB=E8=AF=91: =20 diff --git a/Documentation/translations/zh_TW/process/magic-number.rst b/Do= cumentation/translations/zh_TW/process/magic-number.rst index 199cd5d63973..5582df6d7ca7 100644 --- a/Documentation/translations/zh_TW/process/magic-number.rst +++ b/Documentation/translations/zh_TW/process/magic-number.rst @@ -4,7 +4,7 @@ =20 .. include:: ../disclaimer-zh_TW.rst =20 -:Original: :ref:`Documentation/process/magic-number.rst ` +:Original: :ref:`Documentation/staging/magic-number.rst ` =20 =E5=A6=82=E6=9E=9C=E6=83=B3=E8=A9=95=E8=AB=96=E6=88=96=E6=9B=B4=E6=96=B0= =E6=9C=AC=E6=96=87=E7=9A=84=E5=85=A7=E5=AE=B9=EF=BC=8C=E8=AB=8B=E7=9B=B4=E6= =8E=A5=E7=99=BC=E4=BF=A1=E5=88=B0LKML=E3=80=82=E5=A6=82=E6=9E=9C=E4=BD=A0= =E4=BD=BF=E7=94=A8=E8=8B=B1=E6=96=87=E4=BA=A4=E6=B5=81=E6=9C=89=E5=9B=B0=E9= =9B=A3=E7=9A=84=E8=A9=B1=EF=BC=8C=E4=B9=9F=E5=8F=AF =E4=BB=A5=E5=90=91=E4=B8=AD=E6=96=87=E7=89=88=E7=B6=AD=E8=AD=B7=E8=80=85= =E6=B1=82=E5=8A=A9=E3=80=82=E5=A6=82=E6=9E=9C=E6=9C=AC=E7=BF=BB=E8=AD=AF=E6= =9B=B4=E6=96=B0=E4=B8=8D=E5=8F=8A=E6=99=82=E6=88=96=E8=80=85=E7=BF=BB=E8=AD= =AF=E5=AD=98=E5=9C=A8=E5=95=8F=E9=A1=8C=EF=BC=8C=E8=AB=8B=E8=81=AF=E7=B9=AB= =E4=B8=AD=E6=96=87=E7=89=88=E7=B6=AD=E8=AD=B7=E8=80=85:: --=20 2.39.2