summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2001-09-21totally useless inlines, cost 1380 bytes tooMichael Shalayeff
2001-09-21a bit smaller size, and add gemJason Wright
2001-09-21Not yet working, but getting a bit closer.Hakan Olsson
2001-09-21Correct some pryntf() usage: get the correct number of arguments in theMiod Vallat
correct order.
2001-09-21Correctly initialize variables in cpu_fork(). From NetBSD.Miod Vallat
2001-09-21Add the support for "-c", UKC in the bootloader. Note that currently thisDale Rahn
is not fully supported by the kernel, so will just hang the machine.
2001-09-21Unnecessary wrapper.Artur Grabowski
2001-09-21Save some space on the stack for AuxInfo. Dynamic binaries now have the ↵Artur Grabowski
correct argv.
2001-09-21regenArtur Grabowski
2001-09-21no need for own implemenation of p{read,write}{,v}Artur Grabowski
2001-09-21grammar fixens; from Kaspar Toomik <kaspar@anisakis.org>, pr2077Michael Shalayeff
2001-09-21Fix natlook (broke ftp-proxy) and a memory leak.Daniel Hartmeier
From Ryan McBride.
2001-09-21bump size to 8192 and remove a sparc-ismJason Wright
2001-09-21-TEST,+RAMDISKJason Wright
2001-09-21Don't protect useful macro definitions with #ifdef _LOCORE, as libc needsMiod Vallat
some of them.
2001-09-21phys_map declaration comes from <vm/vm.h>, no need to declare it locally.Miod Vallat
2001-09-21Shared interrupts are not that uncommon. Stop chatting about it.Artur Grabowski
2001-09-21uvm_km_suballoc() will panic if it fails. No need to check the returnMiod Vallat
value.
2001-09-21Driver for Sun GEM ethernet. Not ready yet.Artur Grabowski
From NetBSD
2001-09-20cosmetic.Artur Grabowski
2001-09-20Better timeout usage.Miod Vallat
2001-09-20No longer necessary. GENERIC is a good test kernel now.Artur Grabowski
2001-09-20From NetBSD: allow loading of kernels with bss+data > 4MJason Wright
2001-09-20Three changes from NetBSD:Jason Wright
o in pmap_clear_modify(), we need to clear the TLB_W bit (ie. the hardware write-enable bit) to re-enable modify-bit emulation even if we're doing HWREF. o Fix locking problem. o Change data segment size calculations so we don't need to resize if the bootloader did it for us.
2001-09-20Incorrect parens (from netbsd)Jason Wright
2001-09-20Our printf has %b, use it and don't bother with snprintf stuff.Jason Wright
2001-09-20correct %b stringsJason Wright
2001-09-20grammar; from tobyMichael Shalayeff
2001-09-20openfirmware device (and move ksyms decl to conf.h)Jason Wright
2001-09-20document why we use random()Theo de Raadt
2001-09-20syncMichael Shalayeff
2001-09-20no one cares if RFIFO has been hit... so shaddap!Jason Wright
2001-09-20s/TF_SIZE/TRAPFRAME_SIZEOF/ to make it compile nowMichael Shalayeff
2001-09-20make this produce the assym.h at least, was very hard to test of courseMichael Shalayeff
2001-09-20OpenBSD style bit definitionsJason Wright
2001-09-20undef HMEDEBUG by default, and maximum rx/tx size isJason Wright
ETHERMTU + sizeof(struct ether_header) not ETHERMTU
2001-09-20occured->occurredMike Pechkin
idea from deraadt@ via NetBSD millert@ ok
2001-09-20the use of arc4random() in ether_ifattach() is wrong as randomattach()Peter Galbavy
has not yet been called at this point. replace arc4random() with the more mundae random()&0xff as the use of a strong PRNG is not need here, where this code just helps fix up broken MAC addresses anyway now to find the real problem with my sis(4) LAN interface... ok'd by jason@
2001-09-20Allow nesting of fault handlers by saving old onfault handler andDale Rahn
restoring it when the copying/copyout/badaddr functions finish.
2001-09-20On a fault the onfault condition should be set to the old handler, notDale Rahn
cleared. This code restored the old handler on normal completion but not on fault.
2001-09-20Be much more careful about pcb_onfault.Artur Grabowski
Should solve 2026.
2001-09-20Get rid of B_VFLUSH. Tested by costa and me.Grigoriy Orlov
2001-09-20regenNathan Binkert
2001-09-20more broadcom BCM570x based boards.Nathan Binkert
from FreeBSD
2001-09-20Avoid leaking memory if uiomove fails.Artur Grabowski
2001-09-20remove mountroot_hooks and add all of the stuff necessary for RAMDISK_HOOKSJason Wright
2001-09-19add mapping for ramdisks to chrtoblktblJason Wright
2001-09-19Get rid of B_VFLUSH. Not relevant after the end of the AGE queue.Constantine Sapuntzakis
2001-09-19typoTheo de Raadt
2001-09-19Get rid of unused pagezero variable. From NetBSD.Miod Vallat