From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-wr1-x42f.google.com ([2a00:1450:4864:20::42f]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1ltoxe-009nWz-83 for kexec@lists.infradead.org; Thu, 17 Jun 2021 10:09:23 +0000 Received: by mail-wr1-x42f.google.com with SMTP id e22so2493845wrc.1 for ; Thu, 17 Jun 2021 03:09:20 -0700 (PDT) Date: Thu, 17 Jun 2021 11:09:16 +0100 From: Daniel Thompson Subject: Re: [PATCH v2 2/4] kgdb: Fix spelling mistakes Message-ID: <20210617100916.ynovtwbtsq7eaabw@maple.lan> References: <20210529110305.9446-1-thunder.leizhen@huawei.com> <20210529110305.9446-3-thunder.leizhen@huawei.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20210529110305.9446-3-thunder.leizhen@huawei.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "kexec" Errors-To: kexec-bounces+dwmw2=infradead.org@lists.infradead.org To: Zhen Lei Cc: Jason Wessel , Douglas Anderson , Balbir Singh , Barry Song , Christoph Hellwig , Marek Szyprowski , Robin Murphy , Konrad Rzeszutek Wilk , Thomas Gleixner , Ingo Molnar , Peter Zijlstra , Darren Hart , Davidlohr Bueso , Eric Biederman , "Naveen N . Rao" , Anil S Keshavamurthy , "David S . Miller" , Masami Hiramatsu , Jessica Yu , Steffen Klassert , Daniel Jordan , Oleg Nesterov , John Stultz , Stephen Boyd , Luis Chamberlain , Tejun Heo , Lai Jiangshan , kgdb-bugreport , kexec , linux-crypto , linux-kernel On Sat, May 29, 2021 at 07:03:03PM +0800, Zhen Lei wrote: > Fix some spelling mistakes in comments: > initalization ==> initialization > detatch ==> detach > represntation ==> representation > hexidecimal ==> hexadecimal > delimeter ==> delimiter > architecure ==> architecture > > Signed-off-by: Zhen Lei Applied, thanks. > --- > include/linux/kgdb.h | 8 ++++---- > kernel/debug/debug_core.c | 2 +- > kernel/debug/kdb/kdb_main.c | 8 ++++---- > kernel/debug/kdb/kdb_private.h | 2 +- > 4 files changed, 10 insertions(+), 10 deletions(-) > > diff --git a/include/linux/kgdb.h b/include/linux/kgdb.h > index 392a3670944c..258cdde8d356 100644 > --- a/include/linux/kgdb.h > +++ b/include/linux/kgdb.h > @@ -105,9 +105,9 @@ extern int dbg_set_reg(int regno, void *mem, struct pt_regs *regs); > */ > > /** > - * kgdb_arch_init - Perform any architecture specific initalization. > + * kgdb_arch_init - Perform any architecture specific initialization. > * > - * This function will handle the initalization of any architecture > + * This function will handle the initialization of any architecture > * specific callbacks. > */ > extern int kgdb_arch_init(void); > @@ -229,9 +229,9 @@ extern int kgdb_arch_set_breakpoint(struct kgdb_bkpt *bpt); > extern int kgdb_arch_remove_breakpoint(struct kgdb_bkpt *bpt); > > /** > - * kgdb_arch_late - Perform any architecture specific initalization. > + * kgdb_arch_late - Perform any architecture specific initialization. > * > - * This function will handle the late initalization of any > + * This function will handle the late initialization of any > * architecture specific callbacks. This is an optional function for > * handling things like late initialization of hw breakpoints. The > * default implementation does nothing. > diff --git a/kernel/debug/debug_core.c b/kernel/debug/debug_core.c > index 4708aec492df..a1f26766eb90 100644 > --- a/kernel/debug/debug_core.c > +++ b/kernel/debug/debug_core.c > @@ -1032,7 +1032,7 @@ dbg_notify_reboot(struct notifier_block *this, unsigned long code, void *x) > /* > * Take the following action on reboot notify depending on value: > * 1 == Enter debugger > - * 0 == [the default] detatch debug client > + * 0 == [the default] detach debug client > * -1 == Do nothing... and use this until the board resets > */ > switch (kgdbreboot) { > diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c > index 622410c45da1..d8ee5647b732 100644 > --- a/kernel/debug/kdb/kdb_main.c > +++ b/kernel/debug/kdb/kdb_main.c > @@ -253,7 +253,7 @@ static char *kdballocenv(size_t bytes) > * Parameters: > * match A character string representing a numeric value > * Outputs: > - * *value the unsigned long represntation of the env variable 'match' > + * *value the unsigned long representation of the env variable 'match' > * Returns: > * Zero on success, a kdb diagnostic on failure. > */ > @@ -356,7 +356,7 @@ static void kdb_printenv(void) > * Parameters: > * arg A character string representing a numeric value > * Outputs: > - * *value the unsigned long represntation of arg. > + * *value the unsigned long representation of arg. > * Returns: > * Zero on success, a kdb diagnostic on failure. > */ > @@ -470,7 +470,7 @@ static int kdb_check_regs(void) > * symbol name, and offset to the caller. > * > * The argument may consist of a numeric value (decimal or > - * hexidecimal), a symbol name, a register name (preceded by the > + * hexadecimal), a symbol name, a register name (preceded by the > * percent sign), an environment variable with a numeric value > * (preceded by a dollar sign) or a simple arithmetic expression > * consisting of a symbol name, +/-, and a numeric constant value > @@ -894,7 +894,7 @@ static void parse_grep(const char *str) > * Limited to 20 tokens. > * > * Real rudimentary tokenization. Basically only whitespace > - * is considered a token delimeter (but special consideration > + * is considered a token delimiter (but special consideration > * is taken of the '=' sign as used by the 'set' command). > * > * The algorithm used to tokenize the input string relies on > diff --git a/kernel/debug/kdb/kdb_private.h b/kernel/debug/kdb/kdb_private.h > index ccbed9089808..170c69aedebb 100644 > --- a/kernel/debug/kdb/kdb_private.h > +++ b/kernel/debug/kdb/kdb_private.h > @@ -64,7 +64,7 @@ > > /* > * KDB_MAXBPT describes the total number of breakpoints > - * supported by this architecure. > + * supported by this architecture. > */ > #define KDB_MAXBPT 16 > > -- > 2.25.1 _______________________________________________ kexec mailing list kexec@lists.infradead.org http://lists.infradead.org/mailman/listinfo/kexec