Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-01-23 | move mb_map allocation to mbinit() | Artur Grabowski | |
2002-01-23 | move definition of mb_map from zillions of machdep.c to uipc_mbuf.c | Artur Grabowski | |
2002-01-23 | Back out part of last commit, it causes memory to be freed prematurely | Todd C. Miller | |
in this version of the zlib code; from Wayne Meissner | |||
2002-01-23 | Add defn for MIPS reset register and use it. | Jason Wright | |
2002-01-23 | Allocate rusage, pgrp, ucred and session with pool. | Artur Grabowski | |
2002-01-23 | Use sparc64 fpu_extern.h not sparc. | Jason Wright | |
2002-01-23 | Use the size of the cmd dmamap when syncing the scsi command, not data size. | Per Fogelstrom | |
OK krw@ | |||
2002-01-23 | GC some malloc types. | Artur Grabowski | |
2002-01-23 | oops, make the kgdb var's non-static | Eric Jackson | |
2002-01-23 | declare a few var's extern for KGDB | Eric Jackson | |
2002-01-23 | allow this to compile with KGDB | Eric Jackson | |
2002-01-23 | add midi and sequencer devices | Eric Jackson | |
2002-01-23 | enable spkr, isabeep devices | Eric Jackson | |
2002-01-23 | move cdev_spkr_init() to conf.h for use by other arch's | Eric Jackson | |
2002-01-23 | add support for AlphaPC 64. | Eric Jackson | |
from NetBSD. | |||
2002-01-23 | Kill PR_FREEHEADER, not used anymore and confusing. | Artur Grabowski | |
2002-01-23 | minor cleanup I just happened to do when in this area. | Artur Grabowski | |
2002-01-23 | It looks like there has been one crack smoking and a few cut and pastes. | Artur Grabowski | |
PR_FREEHEADER should not be set in pool_init by the caller. It shouldn't be set in pool_init at all. Besides, it's going away soon anyway. | |||
2002-01-23 | we dont have getprogname() | Eric Jackson | |
2002-01-23 | Pool deals fairly well with physical memory shortage, but it doesn't deal | Artur Grabowski | |
well (not at all) with shortages of the vm_map where the pages are mapped (usually kmem_map). Try to deal with it: - group all information the backend allocator for a pool in a separate struct. The pool will only have a pointer to that struct. - change the pool_init API to reflect that. - link all pools allocating from the same allocator on a linked list. - Since an allocator is responsible to wait for physical memory it will only fail (waitok) when it runs out of its backing vm_map, carefully drain pools using the same allocator so that va space is freed. (see comments in code for caveats and details). - change pool_reclaim to return if it actually succeeded to free some memory, use that information to make draining easier and more efficient. - get rid of PR_URGENT, noone uses it. | |||
2002-01-22 | call osf1_exec_ecoff_hook for osf1 bin's | Eric Jackson | |
2002-01-22 | be realistic about what we support | Eric Jackson | |
2002-01-22 | add fd to nam2blk | Eric Jackson | |
2002-01-22 | dup wi_pcmcia_attach(); from maurice@amaze.nl | Michael Shalayeff | |
2002-01-21 | these are very old and out of date, new info is on the web now | Eric Jackson | |
2002-01-21 | Argh, correctly handle the maxlen == 0 case. | Miod Vallat | |
2002-01-21 | Always clear the destination string in copyinstr() on error, unless we faulted | Miod Vallat | |
when writing to the first character. | |||
2002-01-21 | Always clear the destination string in copyinstr() on error, unless we faulted | Miod Vallat | |
when writing to the first character. With some help from millert@. | |||
2002-01-21 | Mount points must fit in MNAMELEN, not MAXPATHLEN so use copyinstr() | Todd C. Miller | |
to detect whether the path passed in from userland is too long. Based on a patch from peterw AT ifost.org.au. | |||
2002-01-21 | sync | Nathan Binkert | |
2002-01-21 | Another pci->ohci chip | Nathan Binkert | |
2002-01-21 | ARGH, fix it right... | Dale Rahn | |
2002-01-21 | Better barrier protection. pefo found an instance where the previous | Dale Rahn | |
protection was not good enough. work from theo, pefo, toby. | |||
2002-01-21 | remove couple of #if 0'ed portion we will never use | Jun-ichiro itojun Hagino | |
2002-01-21 | Respect db_console for "progammer button", for improved physical security. | Dale Rahn | |
2002-01-21 | finish ericj's work. | Nathan Binkert | |
make all audio drivers use the new allocm and round_buffersize decl's. will ease porting, and generally cleans up a bit | |||
2002-01-20 | Move nfs_norsvport out from behind #ifdef NFSSERVER so ramdisk | Hugh Graham | |
kernels with only NFSCLIENT defined can build. | |||
2002-01-20 | move a few more arch specific drivers to use new allocm and round_buffersize. | Eric Jackson | |
2002-01-20 | use new allocm, round_buffersize decl's | Eric Jackson | |
missed this one. | |||
2002-01-20 | make all audio drivers use the new allocm and round_buffersize decl's. | Eric Jackson | |
will ease porting, and generally cleans up a bit | |||
2002-01-20 | When a process is exec:ing mark it with a flag. Check that flag in ptrace | Artur Grabowski | |
and procfs (and possibly more places in the future) and simply refuse to fiddle with the execing process. This is an ugly hack, but this far we haven't been successful in creating a race-free exec. | |||
2002-01-20 | fix quite appearent bug in cpu_swapin(), missing '&' can easily corrupt | Dale Rahn | |
memory, pmap structure. | |||
2002-01-19 | From Patrik Lindergren (patrik@ipunplugged.com): | Jason Wright | |
* make the driver big-endian aware * handling for DMA errors * move some allocations to attach From me: whitespace clean up and vtophys removal (almost works on sparc64) | |||
2002-01-19 | If handler for SIGCHLD is SIG_IGN, reset to SIG_DLF. This is consistent | Todd C. Miller | |
with our handling of SA_NOCLDWAIT as well as other operating systems. From FreeBSD. | |||
2002-01-19 | sync | Nathan Binkert | |
2002-01-19 | Add Intel PRO/1000XT | Nathan Binkert | |
2002-01-18 | Fix some zlib memory leaks, originally from Mark Adler | Todd C. Miller | |
2002-01-18 | o Remove some debugging prints (most of them wouldn't work anyway) | Jason Wright | |
o Add support for draining the XFIFO on last close o Debounce the break sequence by looking for the terminate side of the break instead of the detection side. o wrap the parameter setup in splhigh (lest we get caught with the chip powered down) | |||
2002-01-18 | Move CS_TIMEOUT decl | Jason Wright | |
2002-01-18 | Resource map code is not used anymore. Long live the extent code! | Miod Vallat | |