Skip to content

Commit

Permalink
lsm: Fix kernel-doc
Browse files Browse the repository at this point in the history
Fix function name in lsm.c kernel-doc comment
to remove some warnings found by running scripts/kernel-doc,
which is caused by using 'make W=1'.

security/apparmor/lsm.c:819: warning: expecting prototype for
apparmor_clone_security(). Prototype was for
apparmor_sk_clone_security() instead
security/apparmor/lsm.c:923: warning: expecting prototype for
apparmor_socket_list(). Prototype was for apparmor_socket_listen()
instead
security/apparmor/lsm.c:1028: warning: expecting prototype for
apparmor_getsockopt(). Prototype was for apparmor_socket_getsockopt()
instead
security/apparmor/lsm.c:1038: warning: expecting prototype for
apparmor_setsockopt(). Prototype was for apparmor_socket_setsockopt()
instead
ecurity/apparmor/lsm.c:1061: warning: expecting prototype for
apparmor_socket_sock_recv_skb(). Prototype was for
apparmor_socket_sock_rcv_skb() instead

Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Yang Li <[email protected]>
Signed-off-by: John Johansen <[email protected]>
  • Loading branch information
Yang Li authored and John Johansen committed Jul 9, 2022
1 parent 240516d commit 0fc6ab4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions security/apparmor/lsm.c
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ static void apparmor_sk_free_security(struct sock *sk)
}

/**
* apparmor_clone_security - clone the sk_security field
* apparmor_sk_clone_security - clone the sk_security field
*/
static void apparmor_sk_clone_security(const struct sock *sk,
struct sock *newsk)
Expand Down Expand Up @@ -937,7 +937,7 @@ static int apparmor_socket_connect(struct socket *sock,
}

/**
* apparmor_socket_list - check perms before allowing listen
* apparmor_socket_listen - check perms before allowing listen
*/
static int apparmor_socket_listen(struct socket *sock, int backlog)
{
Expand Down Expand Up @@ -1041,7 +1041,7 @@ static int aa_sock_opt_perm(const char *op, u32 request, struct socket *sock,
}

/**
* apparmor_getsockopt - check perms before getting socket options
* apparmor_socket_getsockopt - check perms before getting socket options
*/
static int apparmor_socket_getsockopt(struct socket *sock, int level,
int optname)
Expand All @@ -1051,7 +1051,7 @@ static int apparmor_socket_getsockopt(struct socket *sock, int level,
}

/**
* apparmor_setsockopt - check perms before setting socket options
* apparmor_socket_setsockopt - check perms before setting socket options
*/
static int apparmor_socket_setsockopt(struct socket *sock, int level,
int optname)
Expand All @@ -1070,7 +1070,7 @@ static int apparmor_socket_shutdown(struct socket *sock, int how)

#ifdef CONFIG_NETWORK_SECMARK
/**
* apparmor_socket_sock_recv_skb - check perms before associating skb to sk
* apparmor_socket_sock_rcv_skb - check perms before associating skb to sk
*
* Note: can not sleep may be called with locks held
*
Expand Down

0 comments on commit 0fc6ab4

Please sign in to comment.