summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2025-03-28 12:00:40 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2025-03-28 12:00:40 -0700
commitf174ac5ba2d0c77b406b3f73bdcde819d6ed6704 (patch)
treeb6bc37a9a2db65976c5797d6c099f857e9dd3198 /security
parent112e43e9fd3b999513b1914e2bf523ae509f4c7d (diff)
parent6df401a2ee4a91f4fd1095507d6f461f1082d814 (diff)
Merge tag 'ipe-pr-20250324' of git://git.kernel.org/pub/scm/linux/kernel/git/wufan/ipe
Pull ipe update from Fan Wu: "This contains just one commit from Randy Dunlap, which fixes kernel-doc warnings in the IPE subsystem" * tag 'ipe-pr-20250324' of git://git.kernel.org/pub/scm/linux/kernel/git/wufan/ipe: ipe: policy_fs: fix kernel-doc warnings
Diffstat (limited to 'security')
-rw-r--r--security/ipe/policy_fs.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/security/ipe/policy_fs.c b/security/ipe/policy_fs.c
index 3bcd8cbd09df..4cb4dd7f5236 100644
--- a/security/ipe/policy_fs.c
+++ b/security/ipe/policy_fs.c
@@ -16,7 +16,11 @@
#define MAX_VERSION_SIZE ARRAY_SIZE("65535.65535.65535")
/**
- * ipefs_file - defines a file in securityfs.
+ * struct ipefs_file - defines a file in securityfs.
+ *
+ * @name: file name inside the policy subdirectory
+ * @access: file permissions
+ * @fops: &file_operations specific to this file
*/
struct ipefs_file {
const char *name;
@@ -401,7 +405,7 @@ static const struct file_operations delete_fops = {
.write = delete_policy,
};
-/**
+/*
* policy_subdir - files under a policy subdirectory
*/
static const struct ipefs_file policy_subdir[] = {