diff options
author | 2008-12-22 18:20:47 +0000 | |
---|---|---|
committer | 2008-12-22 18:20:47 +0000 | |
commit | 003d0bcf8919aa94d15b658c37954caab450e65c (patch) | |
tree | ba02fc317dd87066851f97a75b31214933a5d8fd /sys/dev/pci/if_ipw.c | |
parent | If we ever get an interrupt from userland with %otherwin set, we have a serious (diff) | |
download | wireguard-openbsd-003d0bcf8919aa94d15b658c37954caab450e65c.tar.xz wireguard-openbsd-003d0bcf8919aa94d15b658c37954caab450e65c.zip |
I swapped MGETHDR arguments in my m_defrag removal commit.
Diffstat (limited to 'sys/dev/pci/if_ipw.c')
-rw-r--r-- | sys/dev/pci/if_ipw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_ipw.c b/sys/dev/pci/if_ipw.c index 45c7b33b141..402052accd6 100644 --- a/sys/dev/pci/if_ipw.c +++ b/sys/dev/pci/if_ipw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ipw.c,v 1.82 2008/12/21 18:19:58 damien Exp $ */ +/* $OpenBSD: if_ipw.c,v 1.83 2008/12/22 18:20:47 damien Exp $ */ /*- * Copyright (c) 2004-2008 @@ -1192,7 +1192,7 @@ ipw_tx_start(struct ifnet *ifp, struct mbuf *m, struct ieee80211_node *ni) } if (error != 0) { /* too many fragments, linearize */ - MGETHDR(m1, MT_DATA, M_DONTWAIT); + MGETHDR(m1, M_DONTWAIT, MT_DATA); if (m1 == NULL) { m_freem(m); return ENOBUFS; |