From e0702e06b4f6ac66a13d2b0b9994c6cb6eda3db4 Mon Sep 17 00:00:00 2001 From: sam Date: Wed, 12 Mar 2003 14:45:22 +0000 Subject: correct two more flag misuses; m_tag* use malloc flags --- sys/net/if_vlan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/net/if_vlan.c') diff --git a/sys/net/if_vlan.c b/sys/net/if_vlan.c index 4e55f14..5fe0a0a 100644 --- a/sys/net/if_vlan.c +++ b/sys/net/if_vlan.c @@ -323,7 +323,7 @@ vlan_start(struct ifnet *ifp) struct m_tag *mtag = m_tag_alloc(MTAG_VLAN, MTAG_VLAN_TAG, sizeof (u_int), - M_DONTWAIT); + M_NOWAIT); if (mtag == NULL) { ifp->if_oerrors++; m_freem(m); -- cgit v1.1