From mboxrd@z Thu Jan 1 00:00:00 1970 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 112A62ED17C for ; Tue, 25 Nov 2025 10:14:38 +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=1764065679; cv=none; b=IqaQYiqpAxhelT4zxefttW4zmw1bTFJv5F1+aPc3N5/Iv/wnA86V/dfHclBs09g+BwGh+zEn/mTebWACM8ecQAbogQIi2qto4jlKzoaTcFftm1MlX7oC2ytMmhmQ3wka441LjjApM0MhFA23alo7Orpba+HTOYW2+m/Brrexy1Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764065679; c=relaxed/simple; bh=5QbE0oH8BLaan3LG4ZGNa9k8bzVZMm5H4MXL8QzMP0w=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=LV+RJ+rUFGu5pDZo8K7GTkmKFPSjwp4eW1JLERKUrifkq9NUDI31ZyV1QdRQNfpaKZuRYXVqyjX92gG/CJG5TPElBuIlcsbqi82AlzM09bhs+uvjwAqBsV/S6+PsagUQ5eYRlpEhe7EnIQgfmHg1wrUFNv9WOQHHsfu2qu4PXn0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=JzEn4Pff; 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="JzEn4Pff" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 626E1C4CEF1; Tue, 25 Nov 2025 10:14:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1764065678; bh=5QbE0oH8BLaan3LG4ZGNa9k8bzVZMm5H4MXL8QzMP0w=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=JzEn4PffFEbnXhdUHKYjgWZYulXLFYqSP63GSerEvMb49yNeqqLq2P0abUp6VubzV yHq7Y4Haa2xhvkYdep72Iml55Aqz6NNcGzmOSq3kVRdp3VT2/Z9+/XOGK4rxptjQeG UrhXVs4Pusls3pPDJ/b4usp6DxPHyASdDPumbJ08Q7i6wzcuA5mYF7iIx3tEQPu91z OO9OPA7/tBhFZQmm0t2lQgG94UK5aaQLD27uiykoF7Lhw/towHHkGh5QwRjajWqB3g cLKTc7Cz2nWfGXhDmJcdlEXNNwQNivaI/8tor3eZ89YXPZCsKvKHUj1oCMT3hCOeYD ai+7IHEIuswsg== Date: Tue, 25 Nov 2025 12:14:30 +0200 From: Mike Rapoport To: Geert Uytterhoeven Cc: Andrew Morton , David Hildenbrand , Lorenzo Stoakes , "Liam R . Howlett" , Vlastimil Babka , Suren Baghdasaryan , Michal Hocko , Kees Cook , Jinbum Park , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] mm: Fix DEBUG_RODATA_TEST indentation in Kconfig Message-ID: References: <74f39b1bffc6ed802088cb3e7d17b4c82330e8b3.1764058676.git.geert@linux-m68k.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=us-ascii Content-Disposition: inline In-Reply-To: <74f39b1bffc6ed802088cb3e7d17b4c82330e8b3.1764058676.git.geert@linux-m68k.org> On Tue, Nov 25, 2025 at 09:19:30AM +0100, Geert Uytterhoeven wrote: > Most of the DEBUG_RODATA_TEST section is indented by four spaces instead > of the customary single TAB. > > Fixes: 2959a5f726f6510d ("mm: add arch-independent testcases for RODATA") > Signed-off-by: Geert Uytterhoeven Reviewed-by: Mike Rapoport (Microsoft) > --- > mm/Kconfig.debug | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/mm/Kconfig.debug b/mm/Kconfig.debug > index 32b65073d0cccaf5..7638d75b27db8cf1 100644 > --- a/mm/Kconfig.debug > +++ b/mm/Kconfig.debug > @@ -175,10 +175,10 @@ config DEBUG_PAGE_REF > nil until the tracepoints are actually enabled. > > config DEBUG_RODATA_TEST > - bool "Testcase for the marking rodata read-only" > - depends on STRICT_KERNEL_RWX > + bool "Testcase for the marking rodata read-only" > + depends on STRICT_KERNEL_RWX > help > - This option enables a testcase for the setting rodata read-only. > + This option enables a testcase for the setting rodata read-only. > > config ARCH_HAS_DEBUG_WX > bool > -- > 2.43.0 > -- Sincerely yours, Mike.