diff options
author | Casey Schaufler <casey@schaufler-ca.com> | 2011-09-29 18:21:01 -0700 |
---|---|---|
committer | Casey Schaufler <cschaufler@cschaufler-intel.(none)> | 2011-10-12 14:26:07 -0700 |
commit | ce8a432197d9892689eb4896f690b9fe6b3de598 (patch) | |
tree | 09dff875df15be3a36f3e0dcb760d0064d4da935 /security/smack/smack_lsm.c | |
parent | 531f1d453ed8a8acee4015bd64e7bcc2eab939e4 (diff) | |
download | linux-3.10-ce8a432197d9892689eb4896f690b9fe6b3de598.tar.gz linux-3.10-ce8a432197d9892689eb4896f690b9fe6b3de598.tar.bz2 linux-3.10-ce8a432197d9892689eb4896f690b9fe6b3de598.zip |
Smack: Clean up comments
There are a number of comments in the Smack code that
are either malformed or include code. This patch cleans
them up.
Signed-off-by: Casey Schaufler <casey@schaufler-ca.com>
Diffstat (limited to 'security/smack/smack_lsm.c')
-rw-r--r-- | security/smack/smack_lsm.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c index 2e71c3f445f..6a822654132 100644 --- a/security/smack/smack_lsm.c +++ b/security/smack/smack_lsm.c @@ -441,6 +441,12 @@ static int smack_sb_umount(struct vfsmount *mnt, int flags) * BPRM hooks */ +/** + * smack_bprm_set_creds - set creds for exec + * @bprm: the exec information + * + * Returns 0 if it gets a blob, -ENOMEM otherwise + */ static int smack_bprm_set_creds(struct linux_binprm *bprm) { struct task_smack *tsp = bprm->cred->security; @@ -844,7 +850,7 @@ static void smack_inode_post_setxattr(struct dentry *dentry, const char *name, return; } -/* +/** * smack_inode_getxattr - Smack check on getxattr * @dentry: the object * @name: unused @@ -861,7 +867,7 @@ static int smack_inode_getxattr(struct dentry *dentry, const char *name) return smk_curacc(smk_of_inode(dentry->d_inode), MAY_READ, &ad); } -/* +/** * smack_inode_removexattr - Smack check on removexattr * @dentry: the object * @name: name of the attribute |