From 49a8398485cf560f83f4301f8e48d4756d5048ee Mon Sep 17 00:00:00 2001 From: royger Date: Mon, 19 Oct 2015 14:37:17 +0000 Subject: [PATCH] xen-netfront: no need to set if_output This is redundant because ether_ifattach will set that field. Submitted by: Wei Liu Reviewed by: royger Differential Revision: https://reviews.freebsd.org/D3918 Sponsored by: Citrix Systems R&D --- sys/dev/xen/netfront/netfront.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/dev/xen/netfront/netfront.c b/sys/dev/xen/netfront/netfront.c index 521292bbc2ea..687cb1c53cb3 100644 --- a/sys/dev/xen/netfront/netfront.c +++ b/sys/dev/xen/netfront/netfront.c @@ -1906,7 +1906,6 @@ create_netdev(device_t dev) if_initname(ifp, "xn", device_get_unit(dev)); ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; ifp->if_ioctl = xn_ioctl; - ifp->if_output = ether_output; ifp->if_start = xn_start; #ifdef notyet ifp->if_watchdog = xn_watchdog; -- 2.39.5