diff options
author | Davidlohr Bueso <dave@stgolabs.net> | 2021-01-14 16:12:01 -0800 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2021-01-15 11:58:10 -0500 |
commit | c1de44631eb53fd03941c0ac398749a3eacc13c2 (patch) | |
tree | 42e60fb3cd8a9a7845b4d2a914f919caddcd91aa /kernel/audit.c | |
parent | a1b861faa6844e323951c7a0609e6f310008eedd (diff) |
audit: Remove leftover reference to the audit_tasklet
This was replaced with a kauditd_wait kthread long ago,
back in:
b7d1125817c (AUDIT: Send netlink messages from a separate kernel thread)
Update the stale comment.
Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'kernel/audit.c')
-rw-r--r-- | kernel/audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/audit.c b/kernel/audit.c index 0bc0b20c6c04..551a394bc8f4 100644 --- a/kernel/audit.c +++ b/kernel/audit.c @@ -2365,7 +2365,7 @@ int audit_signal_info(int sig, struct task_struct *t) * * We can not do a netlink send inside an irq context because it blocks (last * arg, flags, is not set to MSG_DONTWAIT), so the audit buffer is placed on a - * queue and a tasklet is scheduled to remove them from the queue outside the + * queue and a kthread is scheduled to remove them from the queue outside the * irq context. May be called in any context. */ void audit_log_end(struct audit_buffer *ab) |