aboutsummaryrefslogtreecommitdiff
path: root/sys/pci/if_de.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1998-10-10 02:44:53 +0000
committerPeter Wemm <peter@FreeBSD.org>1998-10-10 02:44:53 +0000
commitc9a5e211005cd20480b08e129107802fc52f030b (patch)
tree2b5cd033b8249131ab5df57266d2d90593095b2a /sys/pci/if_de.c
parent26deceba9cf12992c0aa17ddf7ce80ba96e37523 (diff)
downloadsrc-c9a5e211005cd20480b08e129107802fc52f030b.tar.gz
src-c9a5e211005cd20480b08e129107802fc52f030b.zip
Attempt to work around the page fault in tulip_txput(). I've been running
this myself for ages, but wasn't able to get any feedback from the people that I sent it to for testing. Guy Helmer <ghelmer@scl.ameslab.gov> has given it a shot (before getting on a plane, thanks!) and it appears to stop his reproducable page fault panic in the testing he was able to do.
Notes
Notes: svn path=/head/; revision=40163
Diffstat (limited to 'sys/pci/if_de.c')
-rw-r--r--sys/pci/if_de.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pci/if_de.c b/sys/pci/if_de.c
index a5ba48a5db64..3ce99c991ae8 100644
--- a/sys/pci/if_de.c
+++ b/sys/pci/if_de.c
@@ -1,5 +1,5 @@
/* $NetBSD: if_de.c,v 1.72 1998/07/05 06:49:14 jonathan Exp $ */
-/* $Id: if_de.c,v 1.85 1998/07/15 02:32:27 bde Exp $ */
+/* $Id: if_de.c,v 1.86 1998/09/24 13:31:01 peter Exp $ */
/*-
* Copyright (c) 1994-1997 Matt Thomas (matt@3am-software.com)
@@ -4264,8 +4264,8 @@ tulip_txput(
* latter case we have to recopy.
*/
#if !defined(TULIP_BUS_DMA) || defined(TULIP_BUS_DMA_NOTX)
- m0 = m;
again:
+ m0 = m;
#endif
d_status = 0;
eop = nextout = ri->ri_nextout;