* [PATCH 1/3] ARM64: trivial: s/TIF_SECOMP/TIF_SECCOMP/ comment typo fix
@ 2019-06-05 20:30 George G. Davis
2019-06-05 22:04 ` Kees Cook
0 siblings, 1 reply; 3+ messages in thread
From: George G. Davis @ 2019-06-05 20:30 UTC (permalink / raw)
To: Catalin Marinas, Will Deacon, Kees Cook, Andy Lutomirski,
Will Drewry, Jiri Kosina, Julien Grall, Kristina Martsenko,
Ard Biesheuvel, George G. Davis, Mark Rutland,
moderated list:ARM64 PORT (AARCH64 ARCHITECTURE), open list
Fix a s/TIF_SECOMP/TIF_SECCOMP/ comment typo
Cc: Jiri Kosina <trivial@kernel.org>
Signed-off-by: George G. Davis <george_davis@mentor.com>
---
arch/arm64/include/asm/thread_info.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/include/asm/thread_info.h b/arch/arm64/include/asm/thread_info.h
index eb3ef73e07cf..f1d032be628a 100644
--- a/arch/arm64/include/asm/thread_info.h
+++ b/arch/arm64/include/asm/thread_info.h
@@ -75,7 +75,7 @@ void arch_release_task_struct(struct task_struct *tsk);
* TIF_SYSCALL_TRACE - syscall trace active
* TIF_SYSCALL_TRACEPOINT - syscall tracepoint for ftrace
* TIF_SYSCALL_AUDIT - syscall auditing
- * TIF_SECOMP - syscall secure computing
+ * TIF_SECCOMP - syscall secure computing
* TIF_SIGPENDING - signal pending
* TIF_NEED_RESCHED - rescheduling necessary
* TIF_NOTIFY_RESUME - callback before returning to user
--
2.7.4
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/3] ARM64: trivial: s/TIF_SECOMP/TIF_SECCOMP/ comment typo fix
2019-06-05 20:30 [PATCH 1/3] ARM64: trivial: s/TIF_SECOMP/TIF_SECCOMP/ comment typo fix George G. Davis
@ 2019-06-05 22:04 ` Kees Cook
2019-06-06 9:39 ` Will Deacon
0 siblings, 1 reply; 3+ messages in thread
From: Kees Cook @ 2019-06-05 22:04 UTC (permalink / raw)
To: George G. Davis
Cc: Mark Rutland, Jiri Kosina, Ard Biesheuvel, Catalin Marinas,
Will Deacon, open list, Kristina Martsenko, Andy Lutomirski,
Julien Grall, Will Drewry,
moderated list:ARM64 PORT (AARCH64 ARCHITECTURE)
On Wed, Jun 05, 2019 at 04:30:09PM -0400, George G. Davis wrote:
> Fix a s/TIF_SECOMP/TIF_SECCOMP/ comment typo
>
> Cc: Jiri Kosina <trivial@kernel.org>
> Signed-off-by: George G. Davis <george_davis@mentor.com>
Sneaky missing "C"! :)
Reviewed-by: Kees Cook <keescook@chromium.org>
-Kees
> ---
> arch/arm64/include/asm/thread_info.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm64/include/asm/thread_info.h b/arch/arm64/include/asm/thread_info.h
> index eb3ef73e07cf..f1d032be628a 100644
> --- a/arch/arm64/include/asm/thread_info.h
> +++ b/arch/arm64/include/asm/thread_info.h
> @@ -75,7 +75,7 @@ void arch_release_task_struct(struct task_struct *tsk);
> * TIF_SYSCALL_TRACE - syscall trace active
> * TIF_SYSCALL_TRACEPOINT - syscall tracepoint for ftrace
> * TIF_SYSCALL_AUDIT - syscall auditing
> - * TIF_SECOMP - syscall secure computing
> + * TIF_SECCOMP - syscall secure computing
> * TIF_SIGPENDING - signal pending
> * TIF_NEED_RESCHED - rescheduling necessary
> * TIF_NOTIFY_RESUME - callback before returning to user
> --
> 2.7.4
>
--
Kees Cook
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/3] ARM64: trivial: s/TIF_SECOMP/TIF_SECCOMP/ comment typo fix
2019-06-05 22:04 ` Kees Cook
@ 2019-06-06 9:39 ` Will Deacon
0 siblings, 0 replies; 3+ messages in thread
From: Will Deacon @ 2019-06-06 9:39 UTC (permalink / raw)
To: Kees Cook
Cc: Mark Rutland, Jiri Kosina, Ard Biesheuvel, Catalin Marinas,
open list, Kristina Martsenko, Andy Lutomirski, Julien Grall,
George G. Davis, Will Drewry,
moderated list:ARM64 PORT (AARCH64 ARCHITECTURE)
On Wed, Jun 05, 2019 at 03:04:06PM -0700, Kees Cook wrote:
> On Wed, Jun 05, 2019 at 04:30:09PM -0400, George G. Davis wrote:
> > Fix a s/TIF_SECOMP/TIF_SECCOMP/ comment typo
> >
> > Cc: Jiri Kosina <trivial@kernel.org>
> > Signed-off-by: George G. Davis <george_davis@mentor.com>
>
> Sneaky missing "C"! :)
>
> Reviewed-by: Kees Cook <keescook@chromium.org>
I've already got a few arm64 patches for -rc4, so I'll include this one
in my pull as it's harmless.
Cheers,
Will
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-06-06 9:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-05 20:30 [PATCH 1/3] ARM64: trivial: s/TIF_SECOMP/TIF_SECCOMP/ comment typo fix George G. Davis
2019-06-05 22:04 ` Kees Cook
2019-06-06 9:39 ` Will Deacon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox