From fe89fae1665b092c4e0f25ba9be87e710b213fee Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Mon, 16 Mar 2009 09:22:34 +0000 Subject: [PATCH] if_hwassist should be initialized with CSUM, rather than IFCAP, flags. Submitted by: yongari MFC after: 1 week --- sys/net/if_loop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c index 3fd003e3c524..dc297fc524e3 100644 --- a/sys/net/if_loop.c +++ b/sys/net/if_loop.c @@ -138,8 +138,8 @@ lo_clone_create(struct if_clone *ifc, int unit, caddr_t params) ifp->if_ioctl = loioctl; ifp->if_output = looutput; ifp->if_snd.ifq_maxlen = ifqmaxlen; - ifp->if_hwassist = ifp->if_capabilities = ifp->if_capenable = - IFCAP_HWCSUM; + ifp->if_capabilities = ifp->if_capenable = IFCAP_HWCSUM; + ifp->if_hwassist = CSUM_IP | CSUM_TCP | CSUM_UDP; if_attach(ifp); bpfattach(ifp, DLT_NULL, sizeof(u_int32_t)); if (V_loif == NULL)