diff options
author | Beau Belgrave <beaub@linux.microsoft.com> | 2023-03-29 02:52:19 +0300 |
---|---|---|
committer | Steven Rostedt (Google) <rostedt@goodmis.org> | 2023-03-29 13:52:09 +0300 |
commit | a4c40c1349e32f9510707ed09e0961626980d8cb (patch) | |
tree | 0ac690cc47110753de798573f10b6f0e2c0b795a /include/linux/user_events.h | |
parent | ce58e96e9fe24022312ee1eeefb18ed460efdb18 (diff) | |
download | linux-a4c40c1349e32f9510707ed09e0961626980d8cb.tar.xz |
tracing/user_events: Align structs with tabs for readability
Add tabs to make struct members easier to read and unify the style of
the code.
Link: https://lkml.kernel.org/r/20230328235219.203-13-beaub@linux.microsoft.com
Signed-off-by: Beau Belgrave <beaub@linux.microsoft.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Diffstat (limited to 'include/linux/user_events.h')
-rw-r--r-- | include/linux/user_events.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/linux/user_events.h b/include/linux/user_events.h index 0120b3dd5b03..2847f5a18a86 100644 --- a/include/linux/user_events.h +++ b/include/linux/user_events.h @@ -17,13 +17,13 @@ #ifdef CONFIG_USER_EVENTS struct user_event_mm { - struct list_head link; - struct list_head enablers; - struct mm_struct *mm; - struct user_event_mm *next; - refcount_t refcnt; - refcount_t tasks; - struct rcu_work put_rwork; + struct list_head link; + struct list_head enablers; + struct mm_struct *mm; + struct user_event_mm *next; + refcount_t refcnt; + refcount_t tasks; + struct rcu_work put_rwork; }; extern void user_event_mm_dup(struct task_struct *t, |