linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arch: powerpc: net: bpf_jit_comp32.c: Fixed 'instead' typo
@ 2023-10-13  5:31 Muhammad Muzammil
  2023-10-16 12:47 ` Daniel Borkmann
  2023-10-27  9:59 ` Michael Ellerman
  0 siblings, 2 replies; 4+ messages in thread
From: Muhammad Muzammil @ 2023-10-13  5:31 UTC (permalink / raw)
  To: martin.lau, yonghong.song, john.fastabend
  Cc: bpf, linuxppc-dev, linux-kernel, Muhammad Muzammil

Fixed 'instead' typo

Signed-off-by: Muhammad Muzammil <m.muzzammilashraf@gmail.com>
---
 arch/powerpc/net/bpf_jit_comp32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/net/bpf_jit_comp32.c b/arch/powerpc/net/bpf_jit_comp32.c
index 7f91ea064c08..bc7f92ec7f2d 100644
--- a/arch/powerpc/net/bpf_jit_comp32.c
+++ b/arch/powerpc/net/bpf_jit_comp32.c
@@ -940,7 +940,7 @@ int bpf_jit_build_body(struct bpf_prog *fp, u32 *image, struct codegen_context *
 				 * !fp->aux->verifier_zext. Emit NOP otherwise.
 				 *
 				 * Note that "li reg_h,0" is emitted for BPF_B/H/W case,
-				 * if necessary. So, jump there insted of emitting an
+				 * if necessary. So, jump there instead of emitting an
 				 * additional "li reg_h,0" instruction.
 				 */
 				if (size == BPF_DW && !fp->aux->verifier_zext)
-- 
2.27.0


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

* Re: [PATCH] arch: powerpc: net: bpf_jit_comp32.c: Fixed 'instead' typo
  2023-10-13  5:31 [PATCH] arch: powerpc: net: bpf_jit_comp32.c: Fixed 'instead' typo Muhammad Muzammil
@ 2023-10-16 12:47 ` Daniel Borkmann
  2023-10-18 10:16   ` Michael Ellerman
  2023-10-27  9:59 ` Michael Ellerman
  1 sibling, 1 reply; 4+ messages in thread
From: Daniel Borkmann @ 2023-10-16 12:47 UTC (permalink / raw)
  To: Muhammad Muzammil, martin.lau, yonghong.song, john.fastabend
  Cc: bpf, linuxppc-dev, linux-kernel

On 10/13/23 7:31 AM, Muhammad Muzammil wrote:
> Fixed 'instead' typo
> 
> Signed-off-by: Muhammad Muzammil <m.muzzammilashraf@gmail.com>

Michael, I presume you'll pick it up?

Thanks,
Daniel

> ---
>   arch/powerpc/net/bpf_jit_comp32.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/powerpc/net/bpf_jit_comp32.c b/arch/powerpc/net/bpf_jit_comp32.c
> index 7f91ea064c08..bc7f92ec7f2d 100644
> --- a/arch/powerpc/net/bpf_jit_comp32.c
> +++ b/arch/powerpc/net/bpf_jit_comp32.c
> @@ -940,7 +940,7 @@ int bpf_jit_build_body(struct bpf_prog *fp, u32 *image, struct codegen_context *
>   				 * !fp->aux->verifier_zext. Emit NOP otherwise.
>   				 *
>   				 * Note that "li reg_h,0" is emitted for BPF_B/H/W case,
> -				 * if necessary. So, jump there insted of emitting an
> +				 * if necessary. So, jump there instead of emitting an
>   				 * additional "li reg_h,0" instruction.
>   				 */
>   				if (size == BPF_DW && !fp->aux->verifier_zext)
> 


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

* Re: [PATCH] arch: powerpc: net: bpf_jit_comp32.c: Fixed 'instead' typo
  2023-10-16 12:47 ` Daniel Borkmann
@ 2023-10-18 10:16   ` Michael Ellerman
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Ellerman @ 2023-10-18 10:16 UTC (permalink / raw)
  To: Daniel Borkmann, Muhammad Muzammil, martin.lau, yonghong.song,
	john.fastabend
  Cc: bpf, linuxppc-dev, linux-kernel

Daniel Borkmann <daniel@iogearbox.net> writes:
> On 10/13/23 7:31 AM, Muhammad Muzammil wrote:
>> Fixed 'instead' typo
>> 
>> Signed-off-by: Muhammad Muzammil <m.muzzammilashraf@gmail.com>
>
> Michael, I presume you'll pick it up?

Will do.

cheers

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

* Re: [PATCH] arch: powerpc: net: bpf_jit_comp32.c: Fixed 'instead' typo
  2023-10-13  5:31 [PATCH] arch: powerpc: net: bpf_jit_comp32.c: Fixed 'instead' typo Muhammad Muzammil
  2023-10-16 12:47 ` Daniel Borkmann
@ 2023-10-27  9:59 ` Michael Ellerman
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Ellerman @ 2023-10-27  9:59 UTC (permalink / raw)
  To: martin.lau, yonghong.song, john.fastabend, Muhammad Muzammil
  Cc: bpf, linuxppc-dev, linux-kernel

On Fri, 13 Oct 2023 10:31:18 +0500, Muhammad Muzammil wrote:
> Fixed 'instead' typo
> 
> 

Applied to powerpc/next.

[1/1] arch: powerpc: net: bpf_jit_comp32.c: Fixed 'instead' typo
      https://git.kernel.org/powerpc/c/4b47b0fa4b15e0de916e7dd93cd787fdab208ff2

cheers

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

end of thread, other threads:[~2023-10-27 10:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-13  5:31 [PATCH] arch: powerpc: net: bpf_jit_comp32.c: Fixed 'instead' typo Muhammad Muzammil
2023-10-16 12:47 ` Daniel Borkmann
2023-10-18 10:16   ` Michael Ellerman
2023-10-27  9:59 ` Michael Ellerman

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).