summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-05-16it is notright to malloc() w/ WAITOK at attach time, put back NULL check ↵Michael Shalayeff
and change to NOWAIT
2001-05-16allocate memory w/ NOWAIT during autoconf time and check for NULL returnMichael Shalayeff
2001-05-16allocate memory w/ NOWAIT during autoconf time and check for NULL returnMichael Shalayeff
2001-05-16call malloc w/ NOWAIT and check for NULL returnMichael Shalayeff
2001-05-16Use PMAP_NEW if UVM is defined.Todd C. Miller
2001-05-16PMAP_NEW support; thorpej@netbsd.orgTodd C. Miller
2001-05-16Fix vax to work with recent pmap_change_wiring() -> pmap_unwire()Hugh Graham
changes. Mostly from NetBSD.
2001-05-16regen for COMPAT_2{3,5}Todd C. Miller
2001-05-16Create COMPAT_25 and move ogetfsstat, ostatfs and ostatfs into it.Todd C. Miller
Create COMPAT_23 and move __osemctl, omsgctl, oshmctl there.
2001-05-16Use dm_mapsize instead of homegrown one; jason@ ok.Federico G. Schwindt
2001-05-16indentation nit.Artur Grabowski
2001-05-16Bring chip out of suspend mode in case we're booting after a shutdown fromAaron Campbell
Windows. Needed for the VT6102, but doesn't hurt older chips; from FreeBSD.
2001-05-16No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok)Hakan Olsson
2001-05-16No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok)Hakan Olsson
2001-05-16No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok)Hakan Olsson
2001-05-16Use pool to allocate struct filedesc0 and struct file.Artur Grabowski
2001-05-16No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok)Hakan Olsson
2001-05-16document SMALL_KERNEL.Artur Grabowski
2001-05-16use SMALL_KERNEL optionTheo de Raadt
2001-05-16Introduce a new kernel option "SMALL_KERNEL" that will be used to keep theArtur 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-16shorten by one byte :-)Theo de Raadt
2001-05-16use dma_mapsize now that's available.Federico G. Schwindt
2001-05-16Don't clobber ip_sum; ip_output always sets this to 0 before callingFederico G. Schwindt
in_cksum so it's not needed here; itojun@ ok. This makes the ip_sum available in ipfilter.
2001-05-16dump private extended ac97 reg defsMichael Shalayeff
2001-05-16split codec vendor/product into separate tables,Michael Shalayeff
provide meaning for codec revision. some other size improvelances.
2001-05-16extended registers are now in ac97.hMichael Shalayeff
2001-05-16kill 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-16more regs from 2.2 version of specsMichael Shalayeff
2001-05-16regen after removing compatoptsTodd C. Miller
2001-05-16remove unneeded compatoptsTodd C. Miller
2001-05-16proper typing of two variablesTheo de Raadt
2001-05-16use proper str*cpy functions instead of home grown one, spaces; millert@ okMichael Shalayeff
2001-05-16syncTheo de Raadt
2001-05-16update copyrightJason Wright
use bcmp not strncmp for verifying the magic number in the firmware
2001-05-16If we run out of transmit slots, try to copy the next mbuf into a singleJason Wright
fragment and try again. Failing that, operate as normal.
2001-05-16shrink printf messagesTheo de Raadt
2001-05-16no longer support ECOFF kernelsTheo de Raadt
2001-05-16copy i386 floppy3 entryTheo de Raadt
2001-05-15Correct memory type for free(). (art@ ok)Hakan Olsson
2001-05-15partial KNFTheo de Raadt
2001-05-15a few more codecs, a few more consts, trailing spacesMichael Shalayeff
2001-05-15X11 forwarding details improvedTheo de Raadt
2001-05-15do not permit emalloc/erealloc of 0 sized objectsTheo de Raadt
2001-05-15remove NRL pieces no longer usedTheo de Raadt
2001-05-15swapon -a before fsck is runTheo de Raadt
2001-05-15Make path length variables size_t. This fixes the problem whereTodd 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-15the signal handlers can many illegal functions. try to at least be cautious.Theo de Raadt
parts from mickey, parts from me.
2001-05-15do the same as _ffsMichael Shalayeff
2001-05-15error out if failed to malloc memory for inode cache entry; deraadt@ okMichael Shalayeff
2001-05-15Add missing memset() from one of the select() fixes. Also free existingTodd C. Miller
readfds if malloc/realloc fails.