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 8B4E23101BD for ; Mon, 12 Jan 2026 06:52:16 +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=1768200736; cv=none; b=qtpxw+8EChCN5SpbRGpOai5snk+8vuK0KHw7B4FtPYDHO5rXx4CxCGBOsS3NmInnHNIwvP9N0hn3Dhji5GiLxafDWlAePLCJn7XqIn+2JGkgLZemlNukn2hfYErHyVFb4Utv6TnJ/ITdOm2uQEV/waATiYUHH1gtD3Q29XJ/2vs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768200736; c=relaxed/simple; bh=Zr0/lIFCXZjMmjAnh+1bVGpbL0AEOTdDpzHKMbRqAzM=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=Y1L0jJVj753EBZTVRVIqXAkrk6Q/tXY7rFWKm9kX/4U8OgZnWtDUKK0MuBmYQjuchVvogiNpDGxRd9tMxpb9sJAAPYRHXOj2xv03EziXeNqqCVT+bGpu7/+kskliW//dLyftvPpsheFaSyomxsdycL/pWeAeMsz7styNOIvEr9k= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=rS7OMSY8; 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="rS7OMSY8" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4343EC116D0; Mon, 12 Jan 2026 06:52:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1768200736; bh=Zr0/lIFCXZjMmjAnh+1bVGpbL0AEOTdDpzHKMbRqAzM=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=rS7OMSY8x9K2q1tuVXNxghbmBMXcA1zOjJvN41WCIisRpmMa/3X05/rqZvyMRfxH9 WO555HJTDdZCx0tIUAn7GeCdD32G1T3NDj+58bIIFH2FNIIZWgSg7OFb0i3xNChkg8 TtDP51UolZAu0PJWj8Pk5X0K/zoOH9PGoH0XfoInMsxskNgo1GPoIIjN1ZE+KQuE3N gUBIVpwbiP0GxhlZpxpHxhR3NO+oIxgjt0jmj15eY3Jk16wYn0JgYI473TjK2h1kZO DZaVHgDNtHnbi4W7pSrGxD14lXtFQHNEsbC5iuMpet67n1hhcbh7FbwSyeo1LIqnrm L+/Y87StvU1hQ== Message-ID: <954593de-bfcc-467f-9279-bb6e87fb6df3@kernel.org> Date: Mon, 12 Jan 2026 07:52:12 +0100 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v3] nvme/host: fixup some typos To: Wilfred Mallawa , Keith Busch , Jens Axboe , Christoph Hellwig , Sagi Grimberg , linux-nvme@lists.infradead.org, linux-kernel@vger.kernel.org Cc: Wilfred Mallawa References: <20260111233901.2439097-3-wilfred.opensource@gmail.com> Content-Language: en-US From: Damien Le Moal Organization: Western Digital Research In-Reply-To: <20260111233901.2439097-3-wilfred.opensource@gmail.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 1/12/26 00:39, Wilfred Mallawa wrote: > From: Wilfred Mallawa > > Fix up some minor typos in the nvme host driver and a comment > style to conform to the standard kernel style. > > Signed-off-by: Wilfred Mallawa > Reviewed-by: Damien Le Moal > --- > V3: > - Fixup the comment to standarn kernel style > - Drop french style spacing removal. > --- > drivers/nvme/host/tcp.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/nvme/host/tcp.c b/drivers/nvme/host/tcp.c > index 69cb04406b47..92749f6d0f96 100644 > --- a/drivers/nvme/host/tcp.c > +++ b/drivers/nvme/host/tcp.c > @@ -25,7 +25,8 @@ > > struct nvme_tcp_queue; > > -/* Define the socket priority to use for connections were it is desirable > +/* > + * Define the socket priority to use for connections where it is desirable > * that the NIC consider performing optimized packet processing or filtering. > * A non-zero value being sufficient to indicate general consideration of any > * possible optimization. Making it a module param allows for alternative > @@ -926,7 +927,7 @@ static int nvme_tcp_recv_data(struct nvme_tcp_queue *queue, struct sk_buff *skb, > req->curr_bio = req->curr_bio->bi_next; > > /* > - * If we don`t have any bios it means that controller > + * If we don't have any bios it means that controller Since you are correcting things, please do correct the grammar too: ...that the controller... :) Personally, I prefer a more formal style, so I would also change "don't" into "do not". > * sent more data than we requested, hence error > */ > if (!req->curr_bio) { -- Damien Le Moal Western Digital Research