diff options
author | jkim <jkim@FreeBSD.org> | 2008-01-18 20:33:21 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2008-01-18 20:33:21 +0000 |
commit | dd27822e35aeb942efa8c765f478a6837f97c1d5 (patch) | |
tree | 8a2df5fe250e0a9157f1e6cc2c81c004c97d7f5a | |
parent | 6f5423890af971777f929ae23a17fb964000245a (diff) | |
download | FreeBSD-src-dd27822e35aeb942efa8c765f478a6837f97c1d5.zip FreeBSD-src-dd27822e35aeb942efa8c765f478a6837f97c1d5.tar.gz |
Fix mbuf pool watermark configuration (mismerged from OpenBSD in 1.132).
Submitted by: sephe
MFC after: 3 days
-rw-r--r-- | sys/dev/bge/if_bge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/bge/if_bge.c b/sys/dev/bge/if_bge.c index 9de4cdb..6c338dc 100644 --- a/sys/dev/bge/if_bge.c +++ b/sys/dev/bge/if_bge.c @@ -1309,7 +1309,7 @@ bge_blockinit(struct bge_softc *sc) } /* Configure mbuf pool watermarks */ - if (!(BGE_IS_5705_PLUS(sc))) { + if (BGE_IS_5705_PLUS(sc)) { CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_READDMA_LOWAT, 0x0); CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_MACRX_LOWAT, 0x10); } else { |