[PATCH] seccomp: document the "filter_count" field

Randy Dunlap posted 1 patch 2 years, 9 months ago
include/linux/seccomp.h |    1 +
1 file changed, 1 insertion(+)
[PATCH] seccomp: document the "filter_count" field
Posted by Randy Dunlap 2 years, 9 months ago
Add missing kernel-doc for the 'filter_count' field in struct seccomp.

seccomp.h:40: warning: Function parameter or member 'filter_count' not described in 'seccomp'

Fixes: c818c03b661c ("seccomp: Report number of loaded filters in /proc/$pid/status")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Kees Cook <keescook@chromium.org>
---
 include/linux/seccomp.h |    1 +
 1 file changed, 1 insertion(+)

diff -- a/include/linux/seccomp.h b/include/linux/seccomp.h
--- a/include/linux/seccomp.h
+++ b/include/linux/seccomp.h
@@ -27,6 +27,7 @@ struct seccomp_filter;
  *
  * @mode:  indicates one of the valid values above for controlled
  *         system calls available to a process.
+ * @filter_count: number of seccomp filters
  * @filter: must always point to a valid seccomp-filter or NULL as it is
  *          accessed without locking during system call entry.
  *
Re: [PATCH] seccomp: document the "filter_count" field
Posted by Kees Cook 2 years, 9 months ago
On Thu, 1 Dec 2022 23:39:53 -0800, Randy Dunlap wrote:
> Add missing kernel-doc for the 'filter_count' field in struct seccomp.
> 
> seccomp.h:40: warning: Function parameter or member 'filter_count' not described in 'seccomp'
> 
> 

Applied to for-next/seccomp, thanks!

[1/1] seccomp: document the "filter_count" field
      https://git.kernel.org/kees/c/b9069728a70c

-- 
Kees Cook