Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 21f825e6 authored by David S. Miller's avatar David S. Miller
Browse files

pktgen: Fix set-but-unused variable.



"iph" in pktgen_output_ipsec() is set but never actually
used.  Kill it off.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 06091ed6
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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)