summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-07-20Driver for USB CDC Ethernet devices (USB Host-to-Host), appearing asDaniel Hartmeier
network interfaces, transporting Ethernet, supporting Sharp Zaurus and Prolific PL-2501 (external cable). Written by Craig Boston based on code from Bill Paul. ok deraadt@
2004-07-20Use sc_print_addr for error messages.Miod Vallat
2004-07-20The timeout wheels are manipulated by hardclock that's not protected withArtur Grabowski
biglock. We need to protect them with a mutex.
2004-07-20protect printf with a mutex instead of SIMPLELOCK.Artur Grabowski
2004-07-20Use mutex instead of SIMPLELOCK for protecting ddb on mp systems.Artur Grabowski
2004-07-20Use mutex where we used to protect pmap internals with SIMPLELOCK.Artur Grabowski
2004-07-20MD mutex implementation on amd64.Artur Grabowski
2004-07-20MD mutex implementation for i386.Artur Grabowski
2004-07-20Introducing mutexes - cpu-owned spinning locks with spl semantics.Artur Grabowski
This is the MI (slightly inefficient and not MP safe) implementation. deraadt@ ok Tested by many. (this and following commits)
2004-07-20regenMichael Shalayeff
2004-07-20prolific pl2501; for dhartmei@Michael Shalayeff
2004-07-20#include "npx.h"Mark Kettenis
ok deraadt@
2004-07-20support for gnu-info, with @info keyword.Marc Espie
- modify pkg_create so that it will look for info-[0-9]+ and add them to the packing-list. - deal with installing the info file/de-installing it at pkg_add/pkg_delete time. tested by naddy@
2004-07-20Add ELFDEBUG to mirror the a.out debug that already exists.Marco S Hyman
OK art@
2004-07-20since we have both the server and the servers keyword we ought toHenning Brauer
provide an example for a single server as well...
2004-07-20IPv6 support originally by itojun@ with standalone mode fixes by me.Todd C. Miller
Tested by several people in both inetd and standalone mode w/ IPv4 and IPv6.
2004-07-20wrap the heads for the linked list of addresses into a new ntp_addr_wrapHenning Brauer
which, besides the head pointer for the list of course, stores the original address as specified (i. e. as hostname instead of resolved IPs) and flags and such.
2004-07-20Make ENXIO from SIOCGWAVELAN a fatal error so we don't get garbageTodd C. Miller
when wicontrol is run on a non-existant interface.
2004-07-20Allow a kernel to specify wd* as root or swap device;Miod Vallat
spotted by Waldemar Brodkorb.
2004-07-20- fix macro argsJason McIntyre
- remove .Pp before .Sh - whitespace - new sentence, new line
2004-07-20whitespace;Jason McIntyre
2004-07-20Fix formats in debug printfs to work correctly on 64-bit archs.Artur Grabowski
miod@ ok
2004-07-20make lowpc and highpc into long, fixing gprof on 64-bit archs with textArtur Grabowski
above 4GB. miod@ ok
2004-07-20add commented-out entries for currently disabled regress testsDavid Krause
2004-07-20if USE_GCC3, look in the right place for the sourcesDavid Krause
2004-07-20we can add the gnu directory to the regress build nowDavid Krause
2004-07-20comment out gcc,libiberty,libf2c regress tests until they are working rightDavid Krause
2004-07-20Document locking infrastructureMarc Espie
ok naddy@
2004-07-20no point in return from void functionPeter Valchev
2004-07-20Move tag word to the right location in `struct envxmm'.Mark Kettenis
ok deraadt@
2004-07-20syncDavid Krause
2004-07-20SD Controller found on a Toshiba laptop; ok deraadt@David Krause
2004-07-20ansi; khalek@linuxgamers.netTheo de Raadt
2004-07-20typoTheo de Raadt
2004-07-20syncTheo de Raadt
2004-07-20another new device; shin@happynet.co.jpTheo de Raadt
2004-07-19print the correct labels when displaying timeouts with pfctl (eg, pfctl -st).David Gwynne
From Chris Pascoe. ok dhartmei@
2004-07-19Delete the AP scan timeout in atw_detach. Fixes a panic on detach if theTodd C. Miller
timeout is still active as seen by david@
2004-07-19wording from nick@Jason McIntyre
2004-07-19Recognize the daughter board type, if any - but it is not supported yet.Miod Vallat
2004-07-19After a work queue has been aborted and the abort has been acknowledged,Miod Vallat
do not keep setting the A.A. bit in further queue control operations, as advised by the manual.
2004-07-19When we want to thaw all work queues we care about, do it correctly.Miod Vallat
2004-07-19Direct REQUEST_SENSE commands to the correct target, instead of alwaysMiod Vallat
target zero. This makes targets other than zero working now... Spotted by nick@
2004-07-19use same url as in siop(4) as this link was dead; found by Genadijus ↵Michael Shalayeff
Paleckis <genadijus@vic.lt>
2004-07-19Remove obsolete note about V7 Bourne Shell; espie@ OKTodd C. Miller
2004-07-19Implement __HAVE_PMAP_DIRECT on amd64 using large pages. At this momentArtur Grabowski
it's limited to 512GB (one L4 page table entry) physical memory. Only used carefully at this moment, but more improvements are in the pipeline. tested by many, deraadt@ ok.
2004-07-19In builtin_saveregs(), do not systematically allocate 8 words on the stackMiod Vallat
for registers if at least one nameless argument is passed through registers; instead, only allocate as many bytes as necessary. Slightly reduces stack usage; no ABI change.
2004-07-19correct error checking for strtonum, from mjc@bitz.caVincent Labrecque
2004-07-19Start working at providing a tutorial for our make, not PMake, whichMarc Espie
would thoroughly confuse newbies. okay and suggestions jmc@.
2004-07-19use strtonum with proper bounds instead of abusing strtoul; ok millertPeter Valchev