ip_output.c (0afdd676f6e575478634d961286094169adbc50d) ip_output.c (3dd1c9a1270736029ffca670e9bd0265f4120600)
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * The Internet Protocol (IP) output module.
7 *
8 * Authors: Ross Biro

--- 509 unchanged lines hidden (view full) ---

518 to->pkt_type = from->pkt_type;
519 to->priority = from->priority;
520 to->protocol = from->protocol;
521 skb_dst_drop(to);
522 skb_dst_copy(to, from);
523 to->dev = from->dev;
524 to->mark = from->mark;
525
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * The Internet Protocol (IP) output module.
7 *
8 * Authors: Ross Biro

--- 509 unchanged lines hidden (view full) ---

518 to->pkt_type = from->pkt_type;
519 to->priority = from->priority;
520 to->protocol = from->protocol;
521 skb_dst_drop(to);
522 skb_dst_copy(to, from);
523 to->dev = from->dev;
524 to->mark = from->mark;
525
526 skb_copy_hash(to, from);
527
526 /* Copy the flags to each fragment. */
527 IPCB(to)->flags = IPCB(from)->flags;
528
529#ifdef CONFIG_NET_SCHED
530 to->tc_index = from->tc_index;
531#endif
532 nf_copy(to, from);
533#if IS_ENABLED(CONFIG_IP_VS)

--- 1080 unchanged lines hidden ---
528 /* Copy the flags to each fragment. */
529 IPCB(to)->flags = IPCB(from)->flags;
530
531#ifdef CONFIG_NET_SCHED
532 to->tc_index = from->tc_index;
533#endif
534 nf_copy(to, from);
535#if IS_ENABLED(CONFIG_IP_VS)

--- 1080 unchanged lines hidden ---