From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) (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 1C3F029B78D; Thu, 9 Apr 2026 14:37:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.79.88.28 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775745444; cv=none; b=mSm2QXeZewLsjJ1Qhb+b/gIUZDldDQJtKuYdNFexutor4C7D4BjUJKKRZjv2PfKXJaomuyavBJVYFpWzGIeOooPYN3d4WTH0XwuS/kMWQD5bsOa5w3P8vBwRaKKCrndcHKKRiauOVteCeS+9GFgZOhjmzcqthRWnSrVOus5asTU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775745444; c=relaxed/simple; bh=B/Aw2bONDzZSH2ZxxHWPZyNKI51MHzK2qyXgpcg38CE=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=SkCgp/BnpzFve6JKSHpTPLAY1rhcBSyuVgZuGZ+1/nYr1np+ouKcYpaPVdNHTdo9uD8AsADpG6SJK9JorZwHu08DjnWnpF8X3GVzTbzNDBNMw7VjGREy+pm/L5/Iwlv2epGHb1JCUW6zZ9h+M2jKF5EyQLoq2z33FyxXPfhb598= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net; spf=pass smtp.mailfrom=lwn.net; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b=G9kWLVmV; arc=none smtp.client-ip=45.79.88.28 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lwn.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b="G9kWLVmV" DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 40C85410A5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1775745442; bh=B/Aw2bONDzZSH2ZxxHWPZyNKI51MHzK2qyXgpcg38CE=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=G9kWLVmV7dMw+bykDkxWfPN9wcXmej7vadg6yhxEBrhnpd7t9fPCNOml9rKb0LwBX sCWWF/lFpPMB8tdzWxf8BrytHLNP+rNIpJ+ldCVi0m0+j0eyh4AdoXNTMko6rYQBZu /iC0TRB0XreJ+SUxkPTcnOSx2b3hPReaMHSG5fyHm3TccF6qT3uN8cnIiegzz3t6ON oVEpdNfUMmfJtCnI06Fxn2/I5idXkhpHd9BewOzR29RVpj8QsJExz2W1+jUdvpjdzU GSzRr4jRC4hFoJNzXVH483yQdFKMNu7ZUCG0uAYnZXtrKAVk50gl+MN/qQTboydPOY PfU+aytyuubow== Received: from localhost (c-71-229-227-126.hsd1.co.comcast.net [71.229.227.126]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 40C85410A5; Thu, 9 Apr 2026 14:37:22 +0000 (UTC) From: Jonathan Corbet To: lirongqing , Andrew Morton , Borislav Petkov , Randy Dunlap , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Li RongQing , Shuah Khan , Peter Zijlstra , Feng Tang , Pawan Gupta , Dapeng Mi , Kees Cook , Marco Elver , "Paul E . McKenney" , Askar Safin , Bjorn Helgaas , Sohil Mehta Subject: Re: [PATCH v2] Documentation/kernel-parameters: fix architecture alignment for pt, nopt, and nobypass In-Reply-To: <20260330105957.2271-1-lirongqing@baidu.com> References: <20260330105957.2271-1-lirongqing@baidu.com> Date: Thu, 09 Apr 2026 08:37:21 -0600 Message-ID: <87o6jsb3oe.fsf@trenco.lwn.net> Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain lirongqing writes: > From: Li RongQing > > Commit ab0e7f20768a ("Documentation: Merge x86-specific boot options doc > into kernel-parameters.txt") introduced a formatting regression where > architecture tags were placed on separate lines with broken indentation. > This caused the 'nopt' [X86] parameter to appear as if it belonged to > the [PPC/POWERNV] section. > > Furthermore, since the main 'iommu=' parameter heading already specifies > it is for [X86, EARLY], the subsequent standalone [X86] tags for 'pt', > 'nopt', and the AMD GART options are redundant and clutter the > documentation. > > Clean up the formatting by removing these redundant tags and properly > attributing the 'nobypass' option to [PPC/POWERNV]. Applied, thanks. jon