diff options
author | bde <bde@FreeBSD.org> | 1999-08-29 09:03:58 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-08-29 09:03:58 +0000 |
commit | b40f30707d14d710c90e70efe406d062ea6b9f7d (patch) | |
tree | bb52e5f0c44c92782a9e2e03a9aa3e425a376f9d /sys/dev/sf | |
parent | a932c8483a31262b22f6f0ccc03e264207884b41 (diff) | |
download | FreeBSD-src-b40f30707d14d710c90e70efe406d062ea6b9f7d.zip FreeBSD-src-b40f30707d14d710c90e70efe406d062ea6b9f7d.tar.gz |
Don't restrict our requests for contiguous memory to addresses >= 1MB.
This fixes, at least, panics in ncr_attach() on i386's with about 5MB
of memory. The restriction was a hack to leave some low memory for ISA
DMA, but on i386's we now allocate pages from the top down, so all the
restriction did was cause our allocations to fail when there is no free
memory above 1MB.
Diffstat (limited to 'sys/dev/sf')
-rw-r--r-- | sys/dev/sf/if_sf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c index 9a79c26..a07b04f 100644 --- a/sys/dev/sf/if_sf.c +++ b/sys/dev/sf/if_sf.c @@ -1079,7 +1079,7 @@ static int sf_attach(dev) /* Allocate the descriptor queues. */ sc->sf_ldata = contigmalloc(sizeof(struct sf_list_data), M_DEVBUF, - M_NOWAIT, 0x100000, 0xffffffff, PAGE_SIZE, 0); + M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0); if (sc->sf_ldata == NULL) { printf("sf%d: no memory for list buffers!\n", unit); |