mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-15 02:05:33 +00:00
pktgen: Fix set-but-unused variable.
"iph" in pktgen_output_ipsec() is set but never actually used. Kill it off. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
06091ed6b8
commit
21f825e618
@ -2514,7 +2514,6 @@ static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
|
||||
{
|
||||
struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
|
||||
int err = 0;
|
||||
struct iphdr *iph;
|
||||
|
||||
if (!x)
|
||||
return 0;
|
||||
@ -2524,7 +2523,6 @@ static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
|
||||
return 0;
|
||||
|
||||
spin_lock(&x->lock);
|
||||
iph = ip_hdr(skb);
|
||||
|
||||
err = x->outer_mode->output(x, skb);
|
||||
if (err)
|
||||
|
Loading…
x
Reference in New Issue
Block a user