Commit b064ba9c authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller

af_unix: preserve const qualifier in unix_sk()

We can change unix_sk() to propagate its argument const qualifier,
thanks to container_of_const().

We need to change dump_common_audit_data() 'struct unix_sock *u'
local var to get a const attribute.
Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Reviewed-by: default avatarSimon Horman <simon.horman@corigine.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ae6084b7
...@@ -74,10 +74,7 @@ struct unix_sock { ...@@ -74,10 +74,7 @@ struct unix_sock {
#endif #endif
}; };
static inline struct unix_sock *unix_sk(const struct sock *sk) #define unix_sk(ptr) container_of_const(ptr, struct unix_sock, sk)
{
return (struct unix_sock *)sk;
}
#define peer_wait peer_wq.wait #define peer_wait peer_wq.wait
......
...@@ -310,7 +310,7 @@ static void dump_common_audit_data(struct audit_buffer *ab, ...@@ -310,7 +310,7 @@ static void dump_common_audit_data(struct audit_buffer *ab,
case LSM_AUDIT_DATA_NET: case LSM_AUDIT_DATA_NET:
if (a->u.net->sk) { if (a->u.net->sk) {
const struct sock *sk = a->u.net->sk; const struct sock *sk = a->u.net->sk;
struct unix_sock *u; const struct unix_sock *u;
struct unix_address *addr; struct unix_address *addr;
int len = 0; int len = 0;
char *p = NULL; char *p = NULL;
......
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