summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-02-07enable arc(4) for Areca RAID Controllers. they work great.David Gwynne
ok drahn@
2007-02-07enable bio(4)David Gwynne
ok drahn@
2007-02-07bus_space_{read,write}_raw_region_[24] take the length of the buffer theyreDavid Gwynne
operating on as bytes, not as the number of words or dwords. ok drahn@ kettenis@
2007-02-07sync dhcp.h to krw's correction to not count 14 bytes of ethernetKevin Steves
overhead. ok krw@
2007-02-07syncTodd T. Fries
2007-02-07add bio(4), ok dlg@Todd T. Fries
2007-02-06Define trap #0x81 for cache range flush, will be necessary soon for gccMiod Vallat
trampoline code and ld.so.
2007-02-06Get memory size from SH-IPL+g whenever possible, before relying upon theMiod Vallat
hardcoded 64MB. No functional change since we have not encountered non-64MB systems yet.
2007-02-06Use uvm_grow() instead of rolling our own inline version.Miod Vallat
2007-02-06define the bio(4) cdev stuff in conf.h, rather than having a per machineDavid Gwynne
definition. switch amd64 and i386 to the conf.h version, and add it to macppc. original diff ok gwk@ tweaks and ok miod@
2007-02-06Evil typo; spotted by Thorsten GlaserMiod Vallat
2007-02-06document -D; ok jmc@Otto Moerbeek
2007-02-06spacesKevin Steves
2007-02-06remove a comment which is no longer true; ok ottoJason McIntyre
2007-02-06various cleanup:Jason McIntyre
- escapes for < and > - fix some dodgy .Bd - add a little vertical space
2007-02-06sync synopsis and usage();Jason McIntyre
2007-02-06+.Ex -std odJason McIntyre
2007-02-06sort options and sync usage();Jason McIntyre
2007-02-06switch to .Ex and remove some unnecessary brackets;Jason McIntyre
2007-02-06fix some dodgy displays;Jason McIntyre
2007-02-06Update to tzcode2007a. This adds support for 64bit time_t in caseTodd C. Miller
we need it in the future. All of our platforms currently have 32bit time_t types. This also extends the timezone data file format to support both 32bit and 64bit data. The 64bit data is located after the 32bit data so binaries linked with the older tzcode simply won't look at it. A version field in the file header is used to determine whether the data file is the old or extended format. OK miod@
2007-02-06typoMarc Espie
2007-02-06Added support for calling _OSI methodJordan Hargrave
Display byte/word/string/nameref for aml_mnem function ok marco@
2007-02-06Use atomic.h operation for manipulating p_siglist in struct proc. SolvesArtur Grabowski
the problem with lost signals in MP kernels. miod@, kettenis@ ok
2007-02-06one more epoch -> Epoch and a grammar fix; ok millertJason McIntyre
2007-02-06remove some dangling function prototypesKevin Steves
2007-02-06discuss consistently "the Epoch";Jason McIntyre
2007-02-06replace strl* overload and xstrdup() misuse by xsnprintf();Xavier Santolaria
OK joris@.
2007-02-06feed bsdsrc/objdir and makeobjdir in cross-env allowing make obj and the ↵Michael Shalayeff
like to work on random directories; found w/ rainerx0r; drahn@ ok
2007-02-06Add machine/atomic.h to all architectures and define two operationsArtur Grabowski
right now that are supposed to be atomic with respect to interrupts and SMP: atomic_setbits_int and atomic_clearbits_int. All architectures other than i386 and amd64 get dummy implementations since at first we'll be replacing operations that are done with "a |= bit" and "a &= ~bit" today. More proper implementations will follow kettenis@, miod@ ok
2007-02-06fix typo.Pierre-Yves Ritschard
ok reyk@
2007-02-06note that SKIPDIR paths are relative to BSDSRCDIR;Jason McIntyre
from Brian A. Seklecki
2007-02-06document the `+' interactive command more fully;Jason McIntyre
help/ok otto
2007-02-06remove -j from usage();Jason McIntyre
2007-02-06sort options;Jason McIntyre
2007-02-06fix a bug when enabling a service that has no backup table.Pierre-Yves Ritschard
ok reyk@
2007-02-06Change the behaviour of tun(4) on close.Claudio Jeker
- if the interface was auto-created by opening a /dev/tun* device it will auto-destroy on close. This is comparable to ifconfig tun0 destroy and will remove all routes and addresses associated with the interface. - if the interface was created by ifconfig(8) or hostname.if(5) the interface is persistent -- it is just marked as not running. Especially routes are no longer removed when the interface is closed. This is useful for static setups like the server side of a ssh vpn or static qemu session. This behaviour is more logic then the half done cleanup that is currently done. OK mpf@
2007-02-06update some more debug messages and fix typos. also remove some extraReyk Floeter
debug noise from ssl.c.
2007-02-06now that check_http_code, check_http_digest and check_send_expect arePierre-Yves Ritschard
in check_tcp.c, prototype them in check_tcp.c ok reyk@
2007-02-06declare the function ssl_error() globallyReyk Floeter
2007-02-06change fatal message to know where it happenedReyk Floeter
2007-02-06remove an unused variable.Pierre-Yves Ritschard
ok reyk@
2007-02-06inform hoststatectl monitor of ruleset changes and table syncs.Pierre-Yves Ritschard
ok reyk@
2007-02-06Compact help screen a bit so it fits in 24 lines again. Based on aOtto Moerbeek
diff from Mark Lumsden.
2007-02-06add macros describing the ports interrupt status, interrupt enable, taskDavid Gwynne
file descriptor, sata control, and sata error registers. some %b fmt strings are sprinkled around so i can read all this goo better as well.
2007-02-06De-register. No object code change.Kenneth R Westerback
From Bret Lambert.
2007-02-05Map the pci space registers, so that the MEMORY enable gets turned on,Dale Rahn
otherwise if openfirmware has not touched the device yet, the kernel faults on the alternate mappings that are created. ok dlg@
2007-02-05Oops, forgot to commit these files when adding md mutex code; spotted by nick@Miod Vallat
2007-02-04Add zyd to cd ramdisksJonathan Gray
ok deraadt@
2007-02-04upgrade documentation so it reflects the way MakeMaker currently fillsMarc Espie
the test framework. okay millert@