Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-05-16 | it is notright to malloc() w/ WAITOK at attach time, put back NULL check ↵ | Michael Shalayeff | |
and change to NOWAIT | |||
2001-05-16 | allocate memory w/ NOWAIT during autoconf time and check for NULL return | Michael Shalayeff | |
2001-05-16 | allocate memory w/ NOWAIT during autoconf time and check for NULL return | Michael Shalayeff | |
2001-05-16 | call malloc w/ NOWAIT and check for NULL return | Michael Shalayeff | |
2001-05-16 | Use PMAP_NEW if UVM is defined. | Todd C. Miller | |
2001-05-16 | PMAP_NEW support; thorpej@netbsd.org | Todd C. Miller | |
2001-05-16 | Fix vax to work with recent pmap_change_wiring() -> pmap_unwire() | Hugh Graham | |
changes. Mostly from NetBSD. | |||
2001-05-16 | regen for COMPAT_2{3,5} | Todd C. Miller | |
2001-05-16 | Create COMPAT_25 and move ogetfsstat, ostatfs and ostatfs into it. | Todd C. Miller | |
Create COMPAT_23 and move __osemctl, omsgctl, oshmctl there. | |||
2001-05-16 | Use dm_mapsize instead of homegrown one; jason@ ok. | Federico G. Schwindt | |
2001-05-16 | indentation nit. | Artur Grabowski | |
2001-05-16 | Bring chip out of suspend mode in case we're booting after a shutdown from | Aaron Campbell | |
Windows. Needed for the VT6102, but doesn't hurt older chips; from FreeBSD. | |||
2001-05-16 | No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok) | Hakan Olsson | |
2001-05-16 | No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok) | Hakan Olsson | |
2001-05-16 | No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok) | Hakan Olsson | |
2001-05-16 | Use pool to allocate struct filedesc0 and struct file. | Artur Grabowski | |
2001-05-16 | No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok) | Hakan Olsson | |
2001-05-16 | document SMALL_KERNEL. | Artur Grabowski | |
2001-05-16 | use SMALL_KERNEL option | Theo de Raadt | |
2001-05-16 | Introduce a new kernel option "SMALL_KERNEL" that will be used to keep the | Artur Grabowski | |
kernel size down. Two changes. Uninline MALLOC and uninline a few mbuf macros. Saves 140k on alpha RAMDISK (although only 11k after gzip). | |||
2001-05-16 | shorten by one byte :-) | Theo de Raadt | |
2001-05-16 | use dma_mapsize now that's available. | Federico G. Schwindt | |
2001-05-16 | Don't clobber ip_sum; ip_output always sets this to 0 before calling | Federico G. Schwindt | |
in_cksum so it's not needed here; itojun@ ok. This makes the ip_sum available in ipfilter. | |||
2001-05-16 | dump private extended ac97 reg defs | Michael Shalayeff | |
2001-05-16 | split codec vendor/product into separate tables, | Michael Shalayeff | |
provide meaning for codec revision. some other size improvelances. | |||
2001-05-16 | extended registers are now in ac97.h | Michael Shalayeff | |
2001-05-16 | kill COMPAT_{09,10,11} kernel options. We still need kern_info_09.c and ↵ | Todd C. Miller | |
kern_ipc_10.c for other compat modules. | |||
2001-05-16 | more regs from 2.2 version of specs | Michael Shalayeff | |
2001-05-16 | regen after removing compatopts | Todd C. Miller | |
2001-05-16 | remove unneeded compatopts | Todd C. Miller | |
2001-05-16 | proper typing of two variables | Theo de Raadt | |
2001-05-16 | use proper str*cpy functions instead of home grown one, spaces; millert@ ok | Michael Shalayeff | |
2001-05-16 | sync | Theo de Raadt | |
2001-05-16 | update copyright | Jason Wright | |
use bcmp not strncmp for verifying the magic number in the firmware | |||
2001-05-16 | If we run out of transmit slots, try to copy the next mbuf into a single | Jason Wright | |
fragment and try again. Failing that, operate as normal. | |||
2001-05-16 | shrink printf messages | Theo de Raadt | |
2001-05-16 | no longer support ECOFF kernels | Theo de Raadt | |
2001-05-16 | copy i386 floppy3 entry | Theo de Raadt | |
2001-05-15 | Correct memory type for free(). (art@ ok) | Hakan Olsson | |
2001-05-15 | partial KNF | Theo de Raadt | |
2001-05-15 | a few more codecs, a few more consts, trailing spaces | Michael Shalayeff | |
2001-05-15 | X11 forwarding details improved | Theo de Raadt | |
2001-05-15 | do not permit emalloc/erealloc of 0 sized objects | Theo de Raadt | |
2001-05-15 | remove NRL pieces no longer used | Theo de Raadt | |
2001-05-15 | swapon -a before fsck is run | Theo de Raadt | |
2001-05-15 | Make path length variables size_t. This fixes the problem where | Todd C. Miller | |
things like rm can't remove files with ridiculously long path names that were created by some script kiddie trying in vain to exploit something. Previously, the length was effectively constrained to USHRT_MAX due to one of the internal structs. Also, nuke FTS_CHDIRROOT since it never worked correctly and hasn't been documented for a long time. | |||
2001-05-15 | the signal handlers can many illegal functions. try to at least be cautious. | Theo de Raadt | |
parts from mickey, parts from me. | |||
2001-05-15 | do the same as _ffs | Michael Shalayeff | |
2001-05-15 | error out if failed to malloc memory for inode cache entry; deraadt@ ok | Michael Shalayeff | |
2001-05-15 | Add missing memset() from one of the select() fixes. Also free existing | Todd C. Miller | |
readfds if malloc/realloc fails. |