The patch titled Allow pktgen to work with loopback devices. has been added to the -mm tree. Its filename is allow-pktgen-to-work-with-loopback-devices.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Allow pktgen to work with loopback devices. From: Josh Triplett <josh@xxxxxxxxxxxxxxx> pktgen currently only works on network devices with type ARPHRD_ETHER. Add support for the loopback device, type ARPHRD_LOOPBACK. I've tested this on my system, using a modified pktgen.conf-1-1 with s/eth1/lo/g, and it works fine; the network device statistics confirm packet transmission and receipt. Thanks to Sarah Bailey for discovering and tracking down the problem. Signed-off-by: Josh Triplett <josh@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- net/core/pktgen.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN net/core/pktgen.c~allow-pktgen-to-work-with-loopback-devices net/core/pktgen.c --- a/net/core/pktgen.c~allow-pktgen-to-work-with-loopback-devices +++ a/net/core/pktgen.c @@ -1930,7 +1930,7 @@ static struct net_device *pktgen_setup_d printk("pktgen: no such netdevice: \"%s\"\n", pkt_dev->ifname); goto out; } - if (odev->type != ARPHRD_ETHER) { + if (odev->type != ARPHRD_LOOPBACK && odev->type != ARPHRD_ETHER) { printk("pktgen: not an ethernet device: \"%s\"\n", pkt_dev->ifname); goto out_put; _ Patches currently in -mm which might be from josh@xxxxxxxxxxxxxxx are allow-pktgen-to-work-with-loopback-devices.patch rcutorture-mark-rcu_torture_init-as-__init.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html