From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 887A63403FF; Sat, 27 Jun 2026 18:09:54 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782583795; cv=none; b=cE7Jql9DfPkGSISJ+0i7DRXLfg1VLAoFb12lMLOQzQXNBC09Ai5/nISLAFHBVV07tR6ra+dqkQb8aSNbRk2UTAQeR4eh3vNfVAlAFm6xzAti2ek3c2VLE5vM+W4whLPS342ib3WH64w2s6o4t6ZG9K7o5LPx/SzAdBPYhk9gW9o= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782583795; c=relaxed/simple; bh=Qgnr01V+W6PMgOiDnCyXE0LcsNkB2hh1kUa+jRngvCs=; h=Message-ID:Date:MIME-Version:Subject:To:References:From: In-Reply-To:Content-Type; b=kY4PVtTW6PyTSGBuE4FGQmfnvdHnuocHWad2qZqPMKwSEOmpstNB6MiTGEGPfYafGN+ggsn1U2LRp6QhO/Ehr8E7xH7s3citgMuP7QKfgMZ5WaISq+bBpnuJm6SuGEk1Q7mM3Nc3CC1CqDFf8W9srYZCBfrohU63pRzXnAKDct4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=pass smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=sPS7BpM1; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="sPS7BpM1" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: Content-Type:In-Reply-To:From:References:To:Subject:MIME-Version:Date: Message-ID:Sender:Reply-To:Cc:Content-ID:Content-Description; bh=fv1VJlpZFoRUyN4SidIv7/k1kUrErSREvEiCw66vmp8=; b=sPS7BpM1d4C0/VLhGSryGwi16x GuFuyiRxbvHKQ7k+2fLGE00W/JgniVvV4d6SdSaeffkskbCqA8KOl/CcF4n2GKZDhID6J4SVrsUq+ 7UGDzGELx5+sMgAf//7X3rg99LVDYuOJTXuSPkEHYe7jNq5idt0vccsnqLMxL15MbD55/+uCKSAz5 vi8Exugfbz0TQ0ZayJZUlYcOTqjeZicPQ8FR/RHPYismg/WF2VrF7j3J3I7S7+G6PXks31q+ubE8x Sae3elIsaudvJXHL1qPrxiSkkOdfv4QXO/kasDj2t/oftvzheCcNqFP0KCykx3506XuU06V4H2zR0 FPLlXpTQ==; Received: from [50.53.43.113] (helo=[192.168.254.34]) by bombadil.infradead.org with esmtpsa (Exim 4.99.1 #2 (Red Hat Linux)) id 1wdXTV-0000000ChDq-3m7L; Sat, 27 Jun 2026 18:09:53 +0000 Message-ID: <7247dcf0-7aa8-4e01-8534-ace63afe49ec@infradead.org> Date: Sat, 27 Jun 2026 11:09:53 -0700 Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] docs: kernel-hacking: fix typo To: Manuel Ebner , Jonathan Corbet , Shuah Khan , "open list:DOCUMENTATION" , open list References: <20260627091603.29612-2-manuelebner@mailbox.org> Content-Language: en-US From: Randy Dunlap In-Reply-To: <20260627091603.29612-2-manuelebner@mailbox.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Hi, On 6/27/26 2:16 AM, Manuel Ebner wrote: > GP_KERNEL -> GFP_KERNEL > > Signed-off-by: Manuel Ebner > --- > Documentation/kernel-hacking/locking.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/kernel-hacking/locking.rst b/Documentation/kernel-hacking/locking.rst > index c969c76ef7cb..9c6c76d3a723 100644 > --- a/Documentation/kernel-hacking/locking.rst > +++ b/Documentation/kernel-hacking/locking.rst > @@ -1317,7 +1317,7 @@ from user context, and can sleep. > > - put_user() > > -- kmalloc(GP_KERNEL) ` > +- kmalloc(GFP_KERNEL) ` Please drop the trailing ` mark. I have no idea what it was meant to be, but it adds nothing to the rendered HTML output. (I also have no idea why the trailing is there.) But the GFP_KERNEL change is good. > > - mutex_lock_interruptible() and > mutex_lock() -- ~Randy