From nobody Sat Nov 23 15:30:55 2024 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 2FA327A13A for ; Tue, 19 Nov 2024 02:36:04 +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=1731983765; cv=none; b=gUWvV6VS3VRpyDDLopu7ucCl7UggyA8sm8wnEVHCudxKGBrdrT0MnFaOIt2IBY4hGm+CTPfPuU6NRO3vz7LL6kgTRpzERJsV/o1Hs1aRuJNmFl9PNi1vFxUzr6sximdy09XTwlk2h603b7XwNJVoZMVDti6z+Jjj3Qds25dUNbA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731983765; c=relaxed/simple; bh=Ai1q3LYaU1SaRCDfRg5B9X58Tvf5AvQpnd/sIJez+IU=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type; b=tKCWzBCIoh1+Gzg9zN+1/LW7dou3eqBqGIrclQkbW9dtJAzRc1i6DfS0/11YvyYqbD3Ri+SQvuHvl4Fr6hddPdZ1pgqruZUHbq7r0BH644+gmL72IpOb3N/TFlleYFjSZp5P2zHUAoPZAEmyRYRbg1ssxmF+ZprDi8SNp39odp0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 10CADC4CECC; Tue, 19 Nov 2024 02:36:03 +0000 (UTC) Date: Mon, 18 Nov 2024 21:36:35 -0500 From: Steven Rostedt To: LKML Cc: Masami Hiramatsu , Mathieu Desnoyers , liujing Subject: [for-next][PATCH] ring-buffer: Correct a grammatical error in a comment Message-ID: <20241118213635.029970b8@gandalf.local.home> X-Mailer: Claws Mail 3.20.0git84 (GTK+ 2.24.33; x86_64-pc-linux-gnu) 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" git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git ring-buffer/for-next Head SHA1: 537affea1672a841cd5b87b208c193a3a542c7cf liujing (1): ring-buffer: Correct a grammatical error in a comment ---- kernel/trace/ring_buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --------------------------- commit 537affea1672a841cd5b87b208c193a3a542c7cf Author: liujing Date: Thu Nov 7 17:53:27 2024 +0800 ring-buffer: Correct a grammatical error in a comment =20 The word "trace" begins with a consonant sound, so "a" should be used instead of "an". =20 Link: https://lore.kernel.org/20241107095327.6390-1-liujing@cmss.chinam= obile.com Signed-off-by: liujing Signed-off-by: Steven Rostedt (Google) diff --git a/kernel/trace/ring_buffer.c b/kernel/trace/ring_buffer.c index db3bf6a1b536..d6100a7da483 100644 --- a/kernel/trace/ring_buffer.c +++ b/kernel/trace/ring_buffer.c @@ -4060,7 +4060,7 @@ static const char *show_irq_str(int bits) return type[bits]; } =20 -/* Assume this is an trace event */ +/* Assume this is a trace event */ static const char *show_flags(struct ring_buffer_event *event) { struct trace_entry *entry;