linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arch: x86: entry: vdso: Fix the spelling postive to positive in the file vsgx.S
@ 2021-02-10  8:46 Bhaskar Chowdhury
  2021-02-10 16:15 ` Randy Dunlap
  2021-02-12 12:06 ` Jarkko Sakkinen
  0 siblings, 2 replies; 3+ messages in thread
From: Bhaskar Chowdhury @ 2021-02-10  8:46 UTC (permalink / raw)
  To: jarkko, luto, tglx, mingo, bp, x86, hpa, linux-sgx, linux-kernel
  Cc: rdunlap, Bhaskar Chowdhury



s/postive/positive/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 arch/x86/entry/vdso/vsgx.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/entry/vdso/vsgx.S b/arch/x86/entry/vdso/vsgx.S
index 86a0e94f68df..99dafac992e2 100644
--- a/arch/x86/entry/vdso/vsgx.S
+++ b/arch/x86/entry/vdso/vsgx.S
@@ -137,7 +137,7 @@ SYM_FUNC_START(__vdso_sgx_enter_enclave)

 	/*
 	 * If the return from callback is zero or negative, return immediately,
-	 * else re-execute ENCLU with the postive return value interpreted as
+	 * else re-execute ENCLU with the positive return value interpreted as
 	 * the requested ENCLU function.
 	 */
 	cmp	$0, %eax
--
2.30.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] arch: x86: entry: vdso: Fix the spelling postive to positive in the file vsgx.S
  2021-02-10  8:46 [PATCH] arch: x86: entry: vdso: Fix the spelling postive to positive in the file vsgx.S Bhaskar Chowdhury
@ 2021-02-10 16:15 ` Randy Dunlap
  2021-02-12 12:06 ` Jarkko Sakkinen
  1 sibling, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2021-02-10 16:15 UTC (permalink / raw)
  To: Bhaskar Chowdhury, jarkko, luto, tglx, mingo, bp, x86, hpa,
	linux-sgx, linux-kernel

On 2/10/21 12:46 AM, Bhaskar Chowdhury wrote:
> 
> 
> s/postive/positive/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

Acked-by: Randy Dunlap <rdunlap@infradead.org>

> ---
>  arch/x86/entry/vdso/vsgx.S | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/x86/entry/vdso/vsgx.S b/arch/x86/entry/vdso/vsgx.S
> index 86a0e94f68df..99dafac992e2 100644
> --- a/arch/x86/entry/vdso/vsgx.S
> +++ b/arch/x86/entry/vdso/vsgx.S
> @@ -137,7 +137,7 @@ SYM_FUNC_START(__vdso_sgx_enter_enclave)
> 
>  	/*
>  	 * If the return from callback is zero or negative, return immediately,
> -	 * else re-execute ENCLU with the postive return value interpreted as
> +	 * else re-execute ENCLU with the positive return value interpreted as
>  	 * the requested ENCLU function.
>  	 */
>  	cmp	$0, %eax
> --


-- 
~Randy


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] arch: x86: entry: vdso: Fix the spelling postive to positive in the file vsgx.S
  2021-02-10  8:46 [PATCH] arch: x86: entry: vdso: Fix the spelling postive to positive in the file vsgx.S Bhaskar Chowdhury
  2021-02-10 16:15 ` Randy Dunlap
@ 2021-02-12 12:06 ` Jarkko Sakkinen
  1 sibling, 0 replies; 3+ messages in thread
From: Jarkko Sakkinen @ 2021-02-12 12:06 UTC (permalink / raw)
  To: Bhaskar Chowdhury
  Cc: luto, tglx, mingo, bp, x86, hpa, linux-sgx, linux-kernel, rdunlap

On Wed, Feb 10, 2021 at 02:16:10PM +0530, Bhaskar Chowdhury wrote:
> 
> 
> s/postive/positive/

A bit more verbose, please, e.g.:

"Fix spelling error in arch/x86/entry/vdso/vsgx.S: postive -> positive."

> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
> ---
>  arch/x86/entry/vdso/vsgx.S | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/x86/entry/vdso/vsgx.S b/arch/x86/entry/vdso/vsgx.S
> index 86a0e94f68df..99dafac992e2 100644
> --- a/arch/x86/entry/vdso/vsgx.S
> +++ b/arch/x86/entry/vdso/vsgx.S
> @@ -137,7 +137,7 @@ SYM_FUNC_START(__vdso_sgx_enter_enclave)
> 
>  	/*
>  	 * If the return from callback is zero or negative, return immediately,
> -	 * else re-execute ENCLU with the postive return value interpreted as
> +	 * else re-execute ENCLU with the positive return value interpreted as
>  	 * the requested ENCLU function.
>  	 */
>  	cmp	$0, %eax
> --
> 2.30.0
> 
> 



Acked-by: Jarkko Sakkinen <jarkko@kernel.org>

/Jarkko

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-02-12 12:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-10  8:46 [PATCH] arch: x86: entry: vdso: Fix the spelling postive to positive in the file vsgx.S Bhaskar Chowdhury
2021-02-10 16:15 ` Randy Dunlap
2021-02-12 12:06 ` Jarkko Sakkinen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).