diff options
author | chuck <chuck@cvs.openbsd.org> | 1996-06-29 19:59:41 +0000 |
---|---|---|
committer | chuck <chuck@cvs.openbsd.org> | 1996-06-29 19:59:41 +0000 |
commit | 4847779fcdef377877b037cdd5e3c46aa27a0009 (patch) | |
tree | 4b69edbca11b502549e3420ee020fb1e69a49001 /sys/dev/ic/midwayvar.h | |
parent | bae9c000d03c69a69a6ecf9226547885c6a5ba06 (diff) |
change:
- change rxso into a void handle ... no need to know details at this low
level.
fix:
- forgot to init "vci" during ENOTHER_DRAIN case of RX DMA interrupt
[could cause a vm_fault on native mode connection close depending
on needing to drain out the VC and also the random value of vci]
Diffstat (limited to 'sys/dev/ic/midwayvar.h')
-rw-r--r-- | sys/dev/ic/midwayvar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/midwayvar.h b/sys/dev/ic/midwayvar.h index f1dc6569b77..32d7e0c7071 100644 --- a/sys/dev/ic/midwayvar.h +++ b/sys/dev/ic/midwayvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: midwayvar.h,v 1.3 1996/06/27 04:27:48 chuck Exp $ */ +/* $OpenBSD: midwayvar.h,v 1.4 1996/06/29 19:59:39 chuck Exp $ */ /* * @@ -113,7 +113,7 @@ struct en_softc { /* recv buf ctrl. (per recv slot) */ struct { - struct socket *rxso; /* socket if using direct delivery */ + void *rxhand; /* recv. handle if doing direct delivery */ u_int32_t mode; /* saved copy of mode info */ u_int32_t start, stop; /* ends of my buffer area */ u_int32_t cur; /* where I am at */ |