summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-11-28place a comment as to why these are otherwise emptyTheo de Raadt
2007-11-28unref the label when free'ing a protocol nodeReyk Floeter
2007-11-28add a -d argument, which can be used to peek at values in the kernel.Ted Unangst
this is easier than using the ddb console. ok deraadt
2007-11-28use correct data type for the pci address (bus_addr_t)Reyk Floeter
From mickey
2007-11-28remove unused functionCharles Longeau
ok otto@
2007-11-28grrrMarc Espie
2007-11-28debug scaffolding: allows the insertion of a random delay before firing upMarc Espie
jobs in parallel mode.
2007-11-28PHONY targets never correspond to real files.Marc Espie
2007-11-28expand the description of -C; from martynas and myselfJason McIntyre
2007-11-27Like i386 and amd64 - make the __mp_lock not spin at splhigh.Mark Kettenis
help from & ok art@
2007-11-27Missed those because they are in a weird place.Artur Grabowski
2007-11-27sync ural entry;Jason McIntyre
2007-11-27need strcmp.c hereMartin Reindl
2007-11-27fix shared area structure.Damien Bergamini
2007-11-27there are no 802.11a ural devices.Damien Bergamini
2007-11-27properly update hardware multicast filter.Damien Bergamini
hints from zd1211rw.
2007-11-27syncTheo de Raadt
2007-11-27fix DMA alignment constraints: rings must be aligned on a 256-byteDamien Bergamini
boundary, "keep warm" page must be aligned on a 4KB boundary. make sure sc->shared->len[x][y] == sc->shared->len[x + 256][y] for all x < 64.
2007-11-27intr_disable() returns an u_int64_t.Mark Kettenis
2007-11-27Fix dlsym w/special handles when called from an executable that has beenKurt Miller
linked without -E. dlsym issues reported by Pedro Martelletto <pedro at ambientworks.net>. okay tedu@
2007-11-27remove some unneeded #includes; ok mcbride@Kevin Steves
2007-11-27Fix off-by-one that made us attach acpicpu0 and acpicpu1 on GENERIC kernels.Mark Kettenis
ok marco@
2007-11-27Implement the NOLOCK semantics. MPSAFE will have to wait a while untilArtur Grabowski
we decide how to handle interrupts. deraadt@ ok
2007-11-27regenArtur Grabowski
2007-11-27Mark getpid as NOLOCK just for testing.Artur Grabowski
2007-11-27Add possibility to add flags to syscalls in syscalls.master to markArtur Grabowski
syscalls as NOLOCK and MPSAFE. The flags have slightly different semantics: NOLOCK - the syscall doesn't grab any locks whatsoever. MPSAFE - the syscall deals with its own locking. What this means in practice is that NOLOCK syscalls can always be done without the biglock. The MPSAFE syscalls can be done without the biglock on CPUs that don't handle interrupts that require biglock (to preserve lock ordering). deraadt@ ok
2007-11-27Shoot old netbsd compat code from almost 20 years ago; ok artTheo de Raadt
2007-11-27On jmc@'s request add a bit that mentions that the pf(4) mssfix up is onlyClaudio Jeker
needed on pppoe(4) and not needed with pppoe(8) because it is done by ppp(8) by default. OK jmc@
2007-11-27add gbe(4);Jason McIntyre
2007-11-27tweak -r1.1;Jason McIntyre
2007-11-27TCP_COMPAT_42 was last used in 1997. Kill it.Theo de Raadt
ok millert
2007-11-27also move softraid raid1 into own file, ok marcoTed Unangst
2007-11-27Add a few missing device entries.Miod Vallat
2007-11-27Make _dl_md_reloc_got() report errors, and take them into account.Miod Vallat
Fixes PR #5579.
2007-11-27make the deceptively complicated leading and trailing space into functions.Ted Unangst
this reduces kernel size quite a bit. ok claudio
2007-11-27Remove whitespace at EOL, KNF, ansify. Move jump scroll code to a separateMiod Vallat
routine. No functional change (har, har)
2007-11-27split crypto functions out into their own file, so softraid.c is not suchTed Unangst
a jungle. ok deraadt marco
2007-11-27typos; ok jmc@Martynas Venckus
sys/dev/pci/pciide.c from naddy@
2007-11-27fix format stringsCharles Longeau
ok mpf@
2007-11-27add rcs idJasper Lievisse Adriaanse
"feel free to do so" jsing@
2007-11-27missing rcs idJasper Lievisse Adriaanse
"feel free to do so" jsing@
2007-11-27ARGH. Work has poisoned my mind. KNF the braces.Artur Grabowski
2007-11-27Remember to add gbe.4...Joel Sing
2007-11-27Unify amd64 and i386 code further; ok oga kettenisTheo de Raadt
2007-11-27Initial support for the SGI Graphics Back End (GBE) frame buffer found inJoel Sing
SGI O2 machines. We currently rely on the video hardware being initialised by the ARCS firmware and can only use the initial resolution with a colour depth of 32 bits. This driver is disabled by default. ok miod@
2007-11-27tweak previous;Jason McIntyre
2007-11-27tweak the Ox warning section;Jason McIntyre
2007-11-27tweak previous;Jason McIntyre
2007-11-27add missing header for errx.Charles Longeau
ok otto@ deraadt@
2007-11-27add missing header for inet_ntoa.Charles Longeau
"sure" deraadt@