diff options
Diffstat (limited to 'net/unix/unix_bpf.c')
| -rw-r--r-- | net/unix/unix_bpf.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/net/unix/unix_bpf.c b/net/unix/unix_bpf.c index b927e2baae50..452376c6f419 100644 --- a/net/unix/unix_bpf.c +++ b/net/unix/unix_bpf.c @@ -102,6 +102,7 @@ static void unix_dgram_bpf_rebuild_protos(struct proto *prot, const struct proto  	*prot        = *base;  	prot->close  = sock_map_close;  	prot->recvmsg = unix_bpf_recvmsg; +	prot->sock_is_readable = sk_msg_is_readable;  }  static void unix_stream_bpf_rebuild_protos(struct proto *prot, @@ -110,6 +111,7 @@ static void unix_stream_bpf_rebuild_protos(struct proto *prot,  	*prot        = *base;  	prot->close  = sock_map_close;  	prot->recvmsg = unix_bpf_recvmsg; +	prot->sock_is_readable = sk_msg_is_readable;  	prot->unhash  = sock_map_unhash;  } |