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 172FD8F55 for ; Sat, 2 Dec 2023 04:20:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="SKN5sxY/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EEA5EC433C8; Sat, 2 Dec 2023 04:20:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1701490844; bh=Q5sTfh6XDzNIXrht9g0ro8YBIqK0zlToGlBkJL7c0vI=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=SKN5sxY/XlhNrm9/y15bJS0Uf+LOxBEAjxjTx3q3svyEUakk7EE2prdGNL4oxigrx J2iZt7feAfJvb3NEmkDC6ELKrWeQI7WW+tCAxeCJNoWw/XzSAoqg2D74KPsF3AMIQc nsMZvMmbRN3eJP4NAEJnAvNPsUTX6+CpS2wC/L7Bxefw4Y1OZs8G1Mcyf7vxPKw/qM YU7RC7keRAPpr6e/GDZhj/abpw0WDTuU8T+Zn2Ga4spBr5/ULZHgqhkIRs8bi2iv9E IWZAdEV3yFEd6bpfVvHm6RBZCIbBgjVSfRV/aRwgajOhl9ayMbeTSrD3St9ZeWZCAW ORiQ5sODQy2PQ== Date: Fri, 1 Dec 2023 20:20:42 -0800 From: Jakub Kicinski To: Jonathan Corbet Cc: Coco Li , Eric Dumazet , Neal Cardwell , Mubashir Adnan Qureshi , Paolo Abeni , Andrew Lunn , David Ahern , Daniel Borkmann , netdev@vger.kernel.org, Chao Wu , Wei Wang , Pradeep Nemavat Subject: Re: [PATCH v8 net-next 2/5] cache: enforce cache groups Message-ID: <20231201202042.1d352825@kernel.org> In-Reply-To: <20231129072756.3684495-3-lixiaoyan@google.com> References: <20231129072756.3684495-1-lixiaoyan@google.com> <20231129072756.3684495-3-lixiaoyan@google.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Wed, 29 Nov 2023 07:27:53 +0000 Coco Li wrote: > diff --git a/scripts/kernel-doc b/scripts/kernel-doc > index 08a3e603db192..0a890fe4d22b1 100755 > --- a/scripts/kernel-doc > +++ b/scripts/kernel-doc > @@ -1592,6 +1592,11 @@ sub push_parameter($$$$$) { > $parameterdescs{$param} = "anonymous\n"; > $anon_struct_union = 1; > } > + elsif ($param =~ "__cacheline_group" ) > + # handle cache group enforcing variables: they do not need be described in header files > + { > + return; # ignore __cacheline_group_begin and __cacheline_group_end > + } > > # warn if parameter has no description > # (but ignore ones starting with # as these are not parameters Hi Jon, would you be okay with this chunk going into net-next?