mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-27 01:30:55 +07:00
0204774191
And replace all its usage with init_net's socket. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Acked-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
146 B
C
12 lines
146 B
C
#ifndef __NETNS_DCCP_H__
|
|
#define __NETNS_DCCP_H__
|
|
|
|
struct sock;
|
|
|
|
struct netns_dccp {
|
|
struct sock *v4_ctl_sk;
|
|
struct sock *v6_ctl_sk;
|
|
};
|
|
|
|
#endif
|