From patchwork Wed Dec 13 04:37:35 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 13490343 X-Patchwork-Delegate: bpf@iogearbox.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="JtR/u6ja" Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 751A2D2; Tue, 12 Dec 2023 20:37:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=FHrupvbQcDGgET6dyTC+OcKST+HXM/FqSxzspMVtFCs=; b=JtR/u6jaLg/mXNViR2Is2pqVQo 4SyS6BJw65psZ9nQPRprSM68Tut2L95XsnFDG7ZvC5aXPmdlR5XtNoH0M3pXDU+0s6rsU985Xt4FC h45k9Kwj/QRENZBvaT9o5GeNbtqvQvx6OGEIV2icdwQbx2iqimRHsPdBsNHD+KtqM4TM/+jU40ifm BzMoBqp+F5W596RxhEWAg29oJDRBLCxy7JrpRMOOI3EN7vU6UZZ+QhplQRTJ9DIFMnSRaOXJsXwrk cJif0zhsEHf5PdahqHjuraywuyTT4N22DmHYan8Xm3V4ybeT9l1AKx2LGME1BcuU3d/ue5iNTHbqd +wPVziKg==; Received: from [50.53.46.231] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1rDH04-00DavN-1o; Wed, 13 Dec 2023 04:37:36 +0000 From: Randy Dunlap To: netdev@vger.kernel.org Cc: Randy Dunlap , Alexei Starovoitov , Daniel Borkmann , "David S . Miller" , Jakub Kicinski , Jesper Dangaard Brouer , John Fastabend , bpf@vger.kernel.org Subject: [PATCH] net, xdp: correct grammar Date: Tue, 12 Dec 2023 20:37:35 -0800 Message-ID: <20231213043735.30208-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: bpf@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Patchwork-Delegate: kuba@kernel.org Use the correct verb form in 2 places. Signed-off-by: Randy Dunlap Cc: Alexei Starovoitov Cc: Daniel Borkmann Cc: David S. Miller Cc: Jakub Kicinski Cc: Jesper Dangaard Brouer Cc: John Fastabend Cc: bpf@vger.kernel.org Acked-by: Jesper Dangaard Brouer --- include/net/xdp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -- a/include/net/xdp.h b/include/net/xdp.h --- a/include/net/xdp.h +++ b/include/net/xdp.h @@ -16,7 +16,7 @@ * * The XDP RX-queue info (xdp_rxq_info) is associated with the driver * level RX-ring queues. It is information that is specific to how - * the driver have configured a given RX-ring queue. + * the driver has configured a given RX-ring queue. * * Each xdp_buff frame received in the driver carries a (pointer) * reference to this xdp_rxq_info structure. This provides the XDP @@ -32,7 +32,7 @@ * The struct is not directly tied to the XDP prog. A new XDP prog * can be attached as long as it doesn't change the underlying * RX-ring. If the RX-ring does change significantly, the NIC driver - * naturally need to stop the RX-ring before purging and reallocating + * naturally needs to stop the RX-ring before purging and reallocating * memory. In that process the driver MUST call unregister (which * also applies for driver shutdown and unload). The register API is * also mandatory during RX-ring setup.