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 944E433A9C3; Mon, 23 Feb 2026 19:54:09 +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=1771876449; cv=none; b=EFSRh5m6PHnzvW2HpVlY7jbige3iZ1sh9DSeK6gRxfBya6amqL7JAsKS9kXiPFYhDqmP/8L1WaiN0ayaYi9Uv2og5n9Pdr3aRSZJb8XZgbS/X0R3ii1D69qNvqfkMev1kFE8rdsDwZ+0gxwUw26dfLSxtkLL1zNy5FD6h+WceSM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771876449; c=relaxed/simple; bh=IYbIDZYsILBSeSQzfO40gPohBY+fqV/kQRQlYXa7IoQ=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=hR6rV6ToE1PA1L5soqn2hG5FfWxeQmFetP2biDymd45LXV4q/ajmbVkHdlPmWuZk096AX8zHQlIywA+rhW2EK+8D0Wt8gHSwmfjzAtA3AQefvVTFMZp6LiLdjs8mjOkTkdwSecAaT17gL7tAKIVgu7IojPgsfFQBVqAlzZ8hbg0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=MmDP5cNh; 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="MmDP5cNh" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 39E64C116C6; Mon, 23 Feb 2026 19:54:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1771876449; bh=IYbIDZYsILBSeSQzfO40gPohBY+fqV/kQRQlYXa7IoQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=MmDP5cNhzbQtzpC+srXO430Dbat9Mm+n1IVynUOOwTNAN2EOu6rHF/ksoeUwGnzKq 4hYJfbbs1uIC+MyTym2aydZMKvG6Dc57S5u7xZT/YLijukZM1yltiiAPCi5mTLgdAj zwrwtLjigi9QBJTy7sql9R5wLPJL/fmwGXiAaXmQHWB3BoccUmALsCkI8ZQgNWJg5J C3PbUuTJmHOqXdEJfIRElOGaREATOBk0Q10CVVySmcheIBM1I+qoVivhFl0vBiu8U/ s2I8Wlb9ZmJ86lzGcX8w7hPcmrgLTcI2oQrhVXrUuKEDlYki0+xy7OBti7Ic8YxjCr HdMNjpyNlqc0A== Date: Mon, 23 Feb 2026 19:54:04 +0000 From: Simon Horman To: Abhilekh Deka Cc: davem@davemloft.net, kuba@kernel.org, pabeni@redhat.com, nnac123@linux.ibm.com, maddy@linux.ibm.com, mpe@ellerman.id.au, linuxppc-dev@lists.ozlabs.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] net/ibmveth: fix typo in ibmveth_remove_buffer_from_pool() Message-ID: References: <20260222054117.14943-1-abhindeka@gmail.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-Disposition: inline In-Reply-To: <20260222054117.14943-1-abhindeka@gmail.com> On Sun, Feb 22, 2026 at 11:11:17AM +0530, Abhilekh Deka wrote: > Correct a typo in ibmveth_remove_buffer_from_pool() > where gro_receive is misspelled in a comment. > > Signed-off-by: Abhilekh Deka Hi, Codespell notes that Partition is misspelt as Parttion in the same file. Could you consider sending a v2 that fixes that too? ...