Home
last modified time | relevance | path

Searched refs:sockc (Results 1 – 18 of 18) sorted by relevance

/kernel/linux/linux-5.10/net/ipv6/
Draw.c624 unsigned int flags, const struct sockcm_cookie *sockc) in rawv6_send_hdrinc() argument
653 skb->mark = sockc->mark; in rawv6_send_hdrinc()
654 skb->tstamp = sockc->transmit_time; in rawv6_send_hdrinc()
662 skb_setup_tx_timestamp(skb, sockc->tsflags); in rawv6_send_hdrinc()
816 ipc6.sockc.tsflags = sk->sk_tsflags; in rawv6_sendmsg()
817 ipc6.sockc.mark = sk->sk_mark; in rawv6_sendmsg()
899 fl6.flowi6_mark = ipc6.sockc.mark; in rawv6_sendmsg()
949 msg->msg_flags, &ipc6.sockc); in rawv6_sendmsg()
Dping.c117 ipc6.sockc.mark = sk->sk_mark; in ping_v6_sendmsg()
Dicmp.c594 ipc6.sockc.mark = mark; in icmp6_send()
791 ipc6.sockc.mark = mark; in icmpv6_echo_reply()
Dudp.c1299 ipc6.sockc.tsflags = sk->sk_tsflags; in udpv6_sendmsg()
1300 ipc6.sockc.mark = sk->sk_mark; in udpv6_sendmsg()
1458 fl6.flowi6_mark = ipc6.sockc.mark; in udpv6_sendmsg()
Dip6_output.c1440 cork->base.mark = ipc6->sockc.mark; in ip6_setup_cork()
1441 sock_tx_timestamp(sk, ipc6->sockc.tsflags, &cork->base.tx_flags); in ip6_setup_cork()
1447 cork->base.transmit_time = ipc6->sockc.transmit_time; in ip6_setup_cork()
Ddatagram.c774 err = __sock_cmsg_send(sk, msg, cmsg, &ipc6->sockc); in ip6_datagram_send_ctl()
/kernel/linux/linux-5.10/net/ipv4/
Draw.c347 const struct sockcm_cookie *sockc) in raw_send_hdrinc() argument
379 skb->mark = sockc->mark; in raw_send_hdrinc()
380 skb->tstamp = sockc->transmit_time; in raw_send_hdrinc()
390 skb_setup_tx_timestamp(skb, sockc->tsflags); in raw_send_hdrinc()
627 flowi4_init_output(&fl4, ipc.oif, ipc.sockc.mark, tos, in raw_sendmsg()
661 &rt, msg->msg_flags, &ipc.sockc); in raw_sendmsg()
Dip_output.c1294 cork->mark = ipc->sockc.mark; in ip_setup_cork()
1296 cork->transmit_time = ipc->sockc.transmit_time; in ip_setup_cork()
1298 sock_tx_timestamp(sk, ipc->sockc.tsflags, &cork->tx_flags); in ip_setup_cork()
1694 ipc.sockc.transmit_time = transmit_time; in ip_send_unicast_reply()
1725 ipc.sockc.mark = fl4.flowi4_mark; in ip_send_unicast_reply()
Dicmp.c433 ipc.sockc.mark = mark; in icmp_reply()
738 ipc.sockc.mark = mark; in __icmp_send()
Dtcp.c1194 struct sockcm_cookie sockc; in tcp_sendmsg_locked() local
1253 sockcm_init(&sockc, sk); in tcp_sendmsg_locked()
1255 err = sock_cmsg_send(sk, msg, &sockc); in tcp_sendmsg_locked()
1416 tcp_tx_timestamp(sk, sockc.tsflags); in tcp_sendmsg_locked()
Dping.c774 flowi4_init_output(&fl4, ipc.oif, ipc.sockc.mark, tos, in ping_v4_sendmsg()
Dip_sockglue.c270 err = __sock_cmsg_send(sk, msg, cmsg, &ipc->sockc); in ip_cmsg_send()
Dudp.c1195 flowi4_init_output(fl4, ipc.oif, ipc.sockc.mark, tos, in udp_sendmsg()
/kernel/linux/linux-5.10/net/packet/
Daf_packet.c1909 struct sockcm_cookie sockc; in packet_sendmsg_spkt() local
1998 sockcm_init(&sockc, sk); in packet_sendmsg_spkt()
2000 err = sock_cmsg_send(sk, msg, &sockc); in packet_sendmsg_spkt()
2009 skb->tstamp = sockc.transmit_time; in packet_sendmsg_spkt()
2011 skb_setup_tx_timestamp(skb, sockc.tsflags); in packet_sendmsg_spkt()
2517 const struct sockcm_cookie *sockc) in tpacket_fill_skb() argument
2531 skb->tstamp = sockc->transmit_time; in tpacket_fill_skb()
2532 skb_setup_tx_timestamp(skb, sockc->tsflags); in tpacket_fill_skb()
2667 struct sockcm_cookie sockc; in tpacket_snd() local
2718 sockcm_init(&sockc, &po->sk); in tpacket_snd()
[all …]
/kernel/linux/linux-5.10/include/net/
Dip.h73 struct sockcm_cookie sockc; member
93 ipcm->sockc.mark = inet->sk.sk_mark; in ipcm_init_sk()
94 ipcm->sockc.tsflags = inet->sk.sk_tsflags; in ipcm_init_sk()
Dsock.h1707 static inline void sockcm_init(struct sockcm_cookie *sockc, in sockcm_init() argument
1710 *sockc = (struct sockcm_cookie) { .tsflags = sk->sk_tsflags }; in sockcm_init()
1714 struct sockcm_cookie *sockc);
1716 struct sockcm_cookie *sockc);
Dipv6.h344 struct sockcm_cookie sockc; member
/kernel/linux/linux-5.10/net/core/
Dsock.c2368 struct sockcm_cookie *sockc) in __sock_cmsg_send() argument
2378 sockc->mark = *(u32 *)CMSG_DATA(cmsg); in __sock_cmsg_send()
2388 sockc->tsflags &= ~SOF_TIMESTAMPING_TX_RECORD_MASK; in __sock_cmsg_send()
2389 sockc->tsflags |= tsflags; in __sock_cmsg_send()
2396 sockc->transmit_time = get_unaligned((u64 *)CMSG_DATA(cmsg)); in __sock_cmsg_send()
2410 struct sockcm_cookie *sockc) in sock_cmsg_send() argument
2420 ret = __sock_cmsg_send(sk, msg, cmsg, sockc); in sock_cmsg_send()