mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix mbuf pool watermark configuration (mismerged from OpenBSD in 1.132).
Submitted by: sephe MFC after: 3 days
This commit is contained in:
parent
0f7e334a95
commit
e4be3198af
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue