Commit 76862af5 authored by Randy Dunlap's avatar Randy Dunlap Committed by John Johansen

apparmor: fix kernel-doc complaints

Correct kernel-doc notation to placate kernel-doc W=1 warnings:

security/apparmor/policy.c:439: warning: duplicate section name 'Return'
security/apparmor/secid.c:57: warning: Cannot understand  *
security/apparmor/file.c:174: warning: cannot understand function prototype: 'struct aa_perms default_perms = '
Signed-off-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Cc: John Johansen <john.johansen@canonical.com>
Cc: John Johansen <john@apparmor.net>
Cc: apparmor@lists.ubuntu.com
Cc: Paul Moore <paul@paul-moore.com>
Cc: James Morris <jmorris@namei.org>
Cc: "Serge E. Hallyn" <serge@hallyn.com>
Signed-off-by: default avatarJohn Johansen <john.johansen@canonical.com>
parent 1b929c02
...@@ -161,6 +161,7 @@ static int path_name(const char *op, struct aa_label *label, ...@@ -161,6 +161,7 @@ static int path_name(const char *op, struct aa_label *label,
return 0; return 0;
} }
struct aa_perms default_perms = {};
/** /**
* aa_lookup_fperms - convert dfa compressed perms to internal perms * aa_lookup_fperms - convert dfa compressed perms to internal perms
* @dfa: dfa to lookup perms for (NOT NULL) * @dfa: dfa to lookup perms for (NOT NULL)
...@@ -171,7 +172,6 @@ static int path_name(const char *op, struct aa_label *label, ...@@ -171,7 +172,6 @@ static int path_name(const char *op, struct aa_label *label,
* *
* Returns: a pointer to a file permission set * Returns: a pointer to a file permission set
*/ */
struct aa_perms default_perms = {};
struct aa_perms *aa_lookup_fperms(struct aa_policydb *file_rules, struct aa_perms *aa_lookup_fperms(struct aa_policydb *file_rules,
aa_state_t state, struct path_cond *cond) aa_state_t state, struct path_cond *cond)
{ {
......
...@@ -430,11 +430,9 @@ static struct aa_policy *__lookup_parent(struct aa_ns *ns, ...@@ -430,11 +430,9 @@ static struct aa_policy *__lookup_parent(struct aa_ns *ns,
* @hname: hierarchical profile name to find parent of (NOT NULL) * @hname: hierarchical profile name to find parent of (NOT NULL)
* @gfp: type of allocation. * @gfp: type of allocation.
* *
* Returns: NULL on error, parent profile on success
*
* Requires: ns mutex lock held * Requires: ns mutex lock held
* *
* Returns: unrefcounted parent policy or NULL if error creating * Return: unrefcounted parent policy on success or %NULL if error creating
* place holder profiles. * place holder profiles.
*/ */
static struct aa_policy *__create_missing_ancestors(struct aa_ns *ns, static struct aa_policy *__create_missing_ancestors(struct aa_ns *ns,
...@@ -828,7 +826,7 @@ bool aa_current_policy_admin_capable(struct aa_ns *ns) ...@@ -828,7 +826,7 @@ bool aa_current_policy_admin_capable(struct aa_ns *ns)
/** /**
* aa_may_manage_policy - can the current task manage policy * aa_may_manage_policy - can the current task manage policy
* @label: label to check if it can manage policy * @label: label to check if it can manage policy
* @op: the policy manipulation operation being done * @mask: contains the policy manipulation operation being done
* *
* Returns: 0 if the task is allowed to manipulate policy else error * Returns: 0 if the task is allowed to manipulate policy else error
*/ */
...@@ -883,7 +881,6 @@ static struct aa_profile *__list_lookup_parent(struct list_head *lh, ...@@ -883,7 +881,6 @@ static struct aa_profile *__list_lookup_parent(struct list_head *lh,
* __replace_profile - replace @old with @new on a list * __replace_profile - replace @old with @new on a list
* @old: profile to be replaced (NOT NULL) * @old: profile to be replaced (NOT NULL)
* @new: profile to replace @old with (NOT NULL) * @new: profile to replace @old with (NOT NULL)
* @share_proxy: transfer @old->proxy to @new
* *
* Will duplicate and refcount elements that @new inherits from @old * Will duplicate and refcount elements that @new inherits from @old
* and will inherit @old children. * and will inherit @old children.
......
...@@ -53,8 +53,7 @@ void aa_secid_update(u32 secid, struct aa_label *label) ...@@ -53,8 +53,7 @@ void aa_secid_update(u32 secid, struct aa_label *label)
xa_unlock_irqrestore(&aa_secids, flags); xa_unlock_irqrestore(&aa_secids, flags);
} }
/** /*
*
* see label for inverse aa_label_to_secid * see label for inverse aa_label_to_secid
*/ */
struct aa_label *aa_secid_to_label(u32 secid) struct aa_label *aa_secid_to_label(u32 secid)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment