aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/ip_output.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/ip_output.c')
-rw-r--r--net/ipv4/ip_output.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
index 04b69896df5f..e807492f1777 100644
--- a/net/ipv4/ip_output.c
+++ b/net/ipv4/ip_output.c
@@ -953,7 +953,7 @@ alloc_new_skb:
953 else 953 else
954 /* only the initial fragment is 954 /* only the initial fragment is
955 time stamped */ 955 time stamped */
956 ipc->shtx.flags = 0; 956 ipc->tx_flags = 0;
957 } 957 }
958 if (skb == NULL) 958 if (skb == NULL)
959 goto error; 959 goto error;
@@ -964,7 +964,7 @@ alloc_new_skb:
964 skb->ip_summed = csummode; 964 skb->ip_summed = csummode;
965 skb->csum = 0; 965 skb->csum = 0;
966 skb_reserve(skb, hh_len); 966 skb_reserve(skb, hh_len);
967 *skb_tx(skb) = ipc->shtx; 967 skb_shinfo(skb)->tx_flags = ipc->tx_flags;
968 968
969 /* 969 /*
970 * Find where to start putting bytes. 970 * Find where to start putting bytes.
@@ -1384,7 +1384,7 @@ void ip_send_reply(struct sock *sk, struct sk_buff *skb, struct ip_reply_arg *ar
1384 1384
1385 daddr = ipc.addr = rt->rt_src; 1385 daddr = ipc.addr = rt->rt_src;
1386 ipc.opt = NULL; 1386 ipc.opt = NULL;
1387 ipc.shtx.flags = 0; 1387 ipc.tx_flags = 0;
1388 1388
1389 if (replyopts.opt.optlen) { 1389 if (replyopts.opt.optlen) {
1390 ipc.opt = &replyopts.opt; 1390 ipc.opt = &replyopts.opt;