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

Commit 8101328b authored by Fan Du's avatar Fan Du Committed by Steffen Klassert
Browse files

{pktgen, xfrm} Show spi value properly when ipsec turned on



If user run pktgen plus ipsec by using spi, show spi value
properly when cat /proc/net/pktgen/ethX

Signed-off-by: default avatarFan Du <fan.du@windriver.com>
Signed-off-by: default avatarSteffen Klassert <steffen.klassert@secunet.com>
parent c454997e
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -657,8 +657,11 @@ static int pktgen_if_show(struct seq_file *seq, void *v)
	}

#ifdef CONFIG_XFRM
	if (pkt_dev->flags & F_IPSEC_ON)
	if (pkt_dev->flags & F_IPSEC_ON) {
		seq_printf(seq,  "IPSEC  ");
		if (pkt_dev->spi)
			seq_printf(seq, "spi:%u", pkt_dev->spi);
	}
#endif

	if (pkt_dev->flags & F_MACSRC_RND)