From nobody Fri Dec 19 14:44:43 2025 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 D3CB2231A55 for ; Sat, 6 Dec 2025 01:05:54 +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=1764983154; cv=none; b=RvUg6YVghjNXFAAUTmk7Y25OrwZiHt6FfrRuy3N5V1vEPEtjIx8IHe1HFAjc3I//f9lhjP/E+ZJ7+UqamCWypo9ApQcinhu+WLzcJMKlfjTLR6Sk4rQBkCQsyilbNnTpDVrSjXyyT0X9PQx5ZgcFQYN3aox2bvMc7oygKYdQDXQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764983154; c=relaxed/simple; bh=uhCdqE2iQIzoN2uGeL5TzRbkUTef9/oT8hES3b+UFzA=; h=Message-ID:Date:From:To:Cc:Subject:References:MIME-Version: Content-Type; b=FMx61MN7jwr8AWpDXdr3DKJuvuMaiOppgo/oGZyTcBKVhmdyAjbDFnufHbX6oWf5pPJPFD3fPqaSZK8u1LiupA57R/nIFRZqaEVN81Oxf/ti8WCReb+TTiv2rftRNHaBikImFqqUT3C5SSYKRdi5XOpOA0B1PTGkmNHo4mkY/7w= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=jwEGS7YB; 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="jwEGS7YB" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B7E0CC116C6; Sat, 6 Dec 2025 01:05:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1764983154; bh=uhCdqE2iQIzoN2uGeL5TzRbkUTef9/oT8hES3b+UFzA=; h=Date:From:To:Cc:Subject:References:From; b=jwEGS7YB8FVRufktR+7okXw1DJoZ8PSaHumYXPKKXWlewifBtPEfcHtA8AAO6ZOoy r2EqqUqXC9lynXkbQ0k1IkZscYPILyZ87J/KBpgFFnYrQHMpTn3wEqT0phUQeZB3rD LsHXrxvI5hQdnjrQot4LDBjvCdXW88szyH0eouq0seDBvEX/03cNV2kx7j3aL6DTUL C6gd6zptkKXO32nhsnV/t5Z/Xz3xaZSJ//ggqML6x6Kn98X9JKT5RxUHPioVbRuh4n qGr6tzYLH/vBfjhAxaGLhq9w4/L7+TZe1Gk8jJJVOhErQrq1ngsZrJYyjymgGulhQm PAElUaNtvti6w== Received: from rostedt by gandalf with local (Exim 4.98.2) (envelope-from ) id 1vRglL-00000009VsO-1Rbt; Fri, 05 Dec 2025 20:07:03 -0500 Message-ID: <20251206010703.189597663@kernel.org> User-Agent: quilt/0.68 Date: Fri, 05 Dec 2025 20:06:48 -0500 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Masami Hiramatsu , Mark Rutland , Mathieu Desnoyers , Andrew Morton , Maurice Hieronymus Subject: [for-linus][PATCH 15/15] tracing: Fix typo in trace_seq.c References: <20251206010633.884804695@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Maurice Hieronymus Fix typo "wont" to "won't". Link: https://patch.msgid.link/20251121221835.28032-15-mhi@mailbox.org Signed-off-by: Maurice Hieronymus Signed-off-by: Steven Rostedt (Google) --- kernel/trace/trace_seq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/trace/trace_seq.c b/kernel/trace/trace_seq.c index c158d65a8a88..32684ef4fb9d 100644 --- a/kernel/trace/trace_seq.c +++ b/kernel/trace/trace_seq.c @@ -15,7 +15,7 @@ *=20 * A write to the buffer will either succeed or fail. That is, unlike * sprintf() there will not be a partial write (well it may write into - * the buffer but it wont update the pointers). This allows users to + * the buffer but it won't update the pointers). This allows users to * try to write something into the trace_seq buffer and if it fails * they can flush it and try again. * --=20 2.51.0