diff options
| author | Maxime Henrion <mux@FreeBSD.org> | 2003-03-13 00:30:31 +0000 |
|---|---|---|
| committer | Maxime Henrion <mux@FreeBSD.org> | 2003-03-13 00:30:31 +0000 |
| commit | f3b8b63b156975df6b012a7f919780a81a1a6afd (patch) | |
| tree | 44f549c53fca01625f53d3960efc0a5a28d87001 | |
| parent | 72d97679ffd746ac63698aca0ca1df85a75f89c0 (diff) | |
Notes
| -rw-r--r-- | sys/net/if_vlan_var.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_vlan_var.h b/sys/net/if_vlan_var.h index 42f2dcc92002..ff656a62a169 100644 --- a/sys/net/if_vlan_var.h +++ b/sys/net/if_vlan_var.h @@ -98,7 +98,7 @@ struct vlanreq { #define VLAN_INPUT_TAG(_ifp, _m, _t, _errcase) do { \ struct m_tag *mtag; \ mtag = m_tag_alloc(MTAG_VLAN, MTAG_VLAN_TAG, \ - sizeof (u_int), M_DONTWAIT); \ + sizeof (u_int), M_NOWAIT); \ if (mtag == NULL) { \ (_ifp)->if_ierrors++; \ m_freem(_m); \ |
