Message ID | 20221008063411.14829-2-jiapeng.chong@linux.alibaba.com (mailing list archive) |
---|---|
State | Handled Elsewhere |
Headers | show |
Series | [1/3] AppArmor: Fix kernel-doc | expand |
On 10/7/22 23:34, Jiapeng Chong wrote: > security/apparmor/lsm.c:753: warning: expecting prototype for apparmor_bprm_committed_cred(). Prototype was for apparmor_bprm_committed_creds() instead. > > Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=2338 > Reported-by: Abaci Robot <abaci@linux.alibaba.com> > Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Acked-by: John Johansen <john.johansen@canonical.com> I have pulled this into my tree > --- > security/apparmor/lsm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c > index cc83cbf2ce20..c56afd1307c1 100644 > --- a/security/apparmor/lsm.c > +++ b/security/apparmor/lsm.c > @@ -746,7 +746,7 @@ static void apparmor_bprm_committing_creds(struct linux_binprm *bprm) > } > > /** > - * apparmor_bprm_committed_cred - do cleanup after new creds committed > + * apparmor_bprm_committed_creds() - do cleanup after new creds committed > * @bprm: binprm for the exec (NOT NULL) > */ > static void apparmor_bprm_committed_creds(struct linux_binprm *bprm)
diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c index cc83cbf2ce20..c56afd1307c1 100644 --- a/security/apparmor/lsm.c +++ b/security/apparmor/lsm.c @@ -746,7 +746,7 @@ static void apparmor_bprm_committing_creds(struct linux_binprm *bprm) } /** - * apparmor_bprm_committed_cred - do cleanup after new creds committed + * apparmor_bprm_committed_creds() - do cleanup after new creds committed * @bprm: binprm for the exec (NOT NULL) */ static void apparmor_bprm_committed_creds(struct linux_binprm *bprm)
security/apparmor/lsm.c:753: warning: expecting prototype for apparmor_bprm_committed_cred(). Prototype was for apparmor_bprm_committed_creds() instead. Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=2338 Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> --- security/apparmor/lsm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)