Lines Matching defs:prot
102 static void unix_dgram_bpf_rebuild_protos(struct proto *prot, const struct proto *base)
104 *prot = *base;
105 prot->close = sock_map_close;
106 prot->recvmsg = unix_bpf_recvmsg;
107 prot->sock_is_readable = sk_msg_is_readable;
110 static void unix_stream_bpf_rebuild_protos(struct proto *prot,
113 *prot = *base;
114 prot->close = sock_map_close;
115 prot->recvmsg = unix_bpf_recvmsg;
116 prot->sock_is_readable = sk_msg_is_readable;
117 prot->unhash = sock_map_unhash;