diff options
author | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2005-07-31 23:08:59 +0000 |
---|---|---|
committer | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2005-07-31 23:08:59 +0000 |
commit | 2e18af05ed318f15623b80c13efd49bab7f9ff98 (patch) | |
tree | 9ed7aa97362a4309d5571838e97bb9febbfe739a /sys/dev/ic/if_wivar.h | |
parent | d729c7d385182b2a20a11878b0f697316fa2b253 (diff) |
Move large receive/decryption buffer allocation from the stack into
wi_softc.
ok millert
Diffstat (limited to 'sys/dev/ic/if_wivar.h')
-rw-r--r-- | sys/dev/ic/if_wivar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ic/if_wivar.h b/sys/dev/ic/if_wivar.h index d9058470204..fb9c62fc1ee 100644 --- a/sys/dev/ic/if_wivar.h +++ b/sys/dev/ic/if_wivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wivar.h,v 1.25 2005/02/15 19:44:15 reyk Exp $ */ +/* $OpenBSD: if_wivar.h,v 1.26 2005/07/31 23:08:58 pascoe Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -69,6 +69,7 @@ struct wi_softc { u_int16_t wi_supprates; u_int16_t wi_diversity; + u_int8_t wi_rxbuf[1596]; u_int8_t wi_txbuf[1596]; u_int8_t wi_scanbuf[1596]; |