mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
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: Eric Dumazet <edumazet@google.com> Reviewed-by: Simon Horman <simon.horman@corigine.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
ae6084b739
commit
b064ba9c3c
@@ -74,10 +74,7 @@ struct unix_sock {
|
||||
#endif
|
||||
};
|
||||
|
||||
static inline struct unix_sock *unix_sk(const struct sock *sk)
|
||||
{
|
||||
return (struct unix_sock *)sk;
|
||||
}
|
||||
#define unix_sk(ptr) container_of_const(ptr, struct unix_sock, sk)
|
||||
|
||||
#define peer_wait peer_wq.wait
|
||||
|
||||
|
||||
Reference in New Issue
Block a user