[PATCH v2 10/10] x86/mce: Fix typos in comments

Qiuxu Zhuo posted 10 patches 1 month, 1 week ago
There is a newer version of this series
[PATCH v2 10/10] x86/mce: Fix typos in comments
Posted by Qiuxu Zhuo 1 month, 1 week ago
Fix the following typos in comments:

  s/callin/calling/
  s/TBL/TLB/

Reviewed-by: Tony Luck <tony.luck@intel.com>
Signed-off-by: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
---
 arch/x86/kernel/cpu/mce/core.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/kernel/cpu/mce/core.c b/arch/x86/kernel/cpu/mce/core.c
index 844a6f8d6f39..19e6730e7c22 100644
--- a/arch/x86/kernel/cpu/mce/core.c
+++ b/arch/x86/kernel/cpu/mce/core.c
@@ -1118,7 +1118,7 @@ static noinstr int mce_start(int *no_way_out)
 	} else {
 		/*
 		 * Subject: Now start the scanning loop one by one in
-		 * the original callin order.
+		 * the original calling order.
 		 * This way when there are any shared banks it will be
 		 * only seen by one CPU before cleared, avoiding duplicates.
 		 */
@@ -1892,7 +1892,7 @@ static int __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c)
 	case X86_VENDOR_AMD:
 		if (c->x86 == 15 && this_cpu_read(mce_num_banks) > 4) {
 			/*
-			 * disable GART TBL walk error reporting, which
+			 * disable GART TLB walk error reporting, which
 			 * trips off incorrectly with the IOMMU & 3ware
 			 * & Cerberus:
 			 */
-- 
2.17.1
Re: [PATCH v2 10/10] x86/mce: Fix typos in comments
Posted by Sohil Mehta 1 month, 1 week ago
On 10/16/2024 5:30 AM, Qiuxu Zhuo wrote:
> Fix the following typos in comments:
> 
>   s/callin/calling/
>   s/TBL/TLB/
> 

Same as before. The exact change with details doesn't need to be listed
out again in the commit message. It can easily be observed from the diff.

> Reviewed-by: Tony Luck <tony.luck@intel.com>
> Signed-off-by: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
> ---
>  arch/x86/kernel/cpu/mce/core.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/x86/kernel/cpu/mce/core.c b/arch/x86/kernel/cpu/mce/core.c
> index 844a6f8d6f39..19e6730e7c22 100644
> --- a/arch/x86/kernel/cpu/mce/core.c
> +++ b/arch/x86/kernel/cpu/mce/core.c
> @@ -1118,7 +1118,7 @@ static noinstr int mce_start(int *no_way_out)
>  	} else {
>  		/*
>  		 * Subject: Now start the scanning loop one by one in
> -		 * the original callin order.
> +		 * the original calling order.
>  		 * This way when there are any shared banks it will be
>  		 * only seen by one CPU before cleared, avoiding duplicates.
>  		 */
> @@ -1892,7 +1892,7 @@ static int __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c)
>  	case X86_VENDOR_AMD:
>  		if (c->x86 == 15 && this_cpu_read(mce_num_banks) > 4) {
>  			/*
> -			 * disable GART TBL walk error reporting, which
> +			 * disable GART TLB walk error reporting, which
>  			 * trips off incorrectly with the IOMMU & 3ware
>  			 * & Cerberus:
>  			 */
RE: [PATCH v2 10/10] x86/mce: Fix typos in comments
Posted by Zhuo, Qiuxu 1 month, 1 week ago
> From: Mehta, Sohil <sohil.mehta@intel.com>
> [...]
> On 10/16/2024 5:30 AM, Qiuxu Zhuo wrote:
> > Fix the following typos in comments:
> >
> >   s/callin/calling/
> >   s/TBL/TLB/
> >
> 
> Same as before. The exact change with details doesn't need to be listed out
> again in the commit message. It can easily be observed from the diff.

Same as before. Will update it in the next version.

-Qiuxu