Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-01-02 | Relaxed dependencies, and do not undef DEBUG. | Miod Vallat | |
2004-01-02 | There is no such thing as ``device cpu'' for now. | Miod Vallat | |
2004-01-02 | Revert 1.100 and 1.102 for now - they cause page table corruption (bloody hell!) | Miod Vallat | |
2004-01-02 | whitespace | Jun-ichiro itojun Hagino | |
2004-01-02 | standard order for options; | Jason McIntyre | |
kill a .Pp before a list; move AUTHORS to a more logical place; | |||
2004-01-02 | net.inet.carp.preempt is disabled by default. | Ryan Thomas McBride | |
Pointed out by david@ | |||
2004-01-02 | some corrections/improvements to the VI COMMANDS section; | Jason McIntyre | |
2004-01-02 | use .Sq rather than .Dq, which, for some reason, is making -mdoc wobble; | Jason McIntyre | |
2004-01-02 | The scratch pages used in pmap_zero_page() and pmap_copy_page() being special | Miod Vallat | |
mappings, they still need the dcache to be invalidated after use. | |||
2004-01-02 | When both cmmu_dofoo() and cmmu_remote_dofoo() exist, kill the first one, | Miod Vallat | |
and rename the second one to the first one, i.e. have the cmmu_dofoo() functions always take a cpu# parameter. No functional change, simply makes code more readable and saves a few call frames. | |||
2004-01-02 | new year was around spring equinox and not on winter solstice and thus ↵ | Michael Shalayeff | |
rearrange it properly | |||
2004-01-02 | use pool for pcb; with grange@ like netbsd; ok itojun@, cedric@ | Markus Friedl | |
2004-01-02 | Document that pressing return allows you to "fast forward" the game clock. | Jason McIntyre | |
From Peter Maydell (Debian bug 216980) via NetBSD; | |||
2004-01-02 | apparently my understanding of '{FLT,DBL,LDBL}_{MIN,MAX}_EXP' ahs | Michael Shalayeff | |
been wrong and thus proven by many and there change it back to what it is meaning explained in http://www-ccs.ucsd.edu/c/float.html . also fix spmath to use it's own consts instead of (now) off by one float.h values thus to avoid any kind of binary changes. | |||
2004-01-02 | attach on two more ICHs | Michael Shalayeff | |
2004-01-02 | point people to re_format(7) for a description of basic regular | Jason McIntyre | |
expressions, rather than regex(3); from Greg A. Woods; | |||
2004-01-02 | use standard section ENVIRONMENT, rather than ENVIRONMENT VARIABLES; | Jason McIntyre | |
from deraadt@ | |||
2004-01-02 | typo from Daniel Cavanagh; | Jason McIntyre | |
2004-01-02 | add a section on thread safety, which is a start at documenting which | Jason McIntyre | |
functions are not thread safe; started by a request from Marc Balmer to document that malloc(3) *was* thread safe, and expanded by marc@ to list functions that are not; also add some spacing to make the page more readable, and adjust the -width of a list; ok marc@ | |||
2004-01-02 | after some advice from nick, note that only com0 is currently supported | Jason McIntyre | |
as serial; closes PR 3621 from Johan Fredin; ok nick@ krw@ millert@ deraadt@ | |||
2004-01-02 | sync | Theo de Raadt | |
2004-01-02 | SEE ALSO after FILES; | Jason McIntyre | |
2004-01-02 | umask setting and unlink before bind() the unix socket, chmod and umask | Henning Brauer | |
restore afterwards help & ok theo | |||
2004-01-02 | Don't strip scripts; idea from mpech@; ok deraadt@ | Todd C. Miller | |
2004-01-02 | PCI_PRODUCT_ALI_M1533 should use ali1543_init too. When the PCI id for | Todd C. Miller | |
PCI_PRODUCT_ALI_M1543 was fixed machines with an M1533 stopped working. ok deraadt@ | |||
2004-01-02 | fix mount_mfs example: -N is only an option for newfs not mount_mfs | David Krause | |
also use a real device name like sd0b ok millert@ jmc@ | |||
2004-01-02 | Treat all commands returning a sense data ASC of 0x29 as having | Kenneth R Westerback | |
suffered a reset condition. Newer devices return a variety of ASCQ values now (0x00 -> 0x07) rather than just 0x00. Such commands will now be retried rather than returning EIO. Started off when Marco Peereboom's SCSI analyzer saw some ASC/ASCQ results of 0x29/0x02. ok miod@. | |||
2004-01-02 | Add in missing ASC/ASCQ descriptions for non-RAMDISK (i.e. | Kenneth R Westerback | |
non-SCSITERSE) kernels. Brings the list up to SCSI-3. From Marco Peereboom (marco at peereboom dot us). ok deraadt@. | |||
2004-01-02 | connect bgpctl | Henning Brauer | |
ok theo | |||
2004-01-02 | move the socket name #define to bgpd.h and get rid of bgpdctl* | Henning Brauer | |
2004-01-02 | bring back bgpctl | Henning Brauer | |
ok and help theo | |||
2004-01-02 | no, not there | Theo de Raadt | |
2004-01-02 | mark a few numbers U to please compilers; henning ok | Theo de Raadt | |
2004-01-02 | do not , after last element in an enum | Theo de Raadt | |
2004-01-02 | no nested subdirs like this, henning did not discuss | Theo de Raadt | |
2004-01-02 | compile like it used to | Theo de Raadt | |
2004-01-02 | disable bgpd | Theo de Raadt | |
2004-01-01 | add bgpdctl | Henning Brauer | |
2004-01-01 | add bgpdctl | Henning Brauer | |
right now it only connects to bgpd and prints a list of neighbors and their status; that will change. | |||
2004-01-01 | prepare for bgpdctl | Henning Brauer | |
2004-01-01 | listen on a AF_LOCAL socket for imsgs too. | Henning Brauer | |
only implemented type yet is IMSG_CTL_SHOW_NEIGHBOR which sends back the struct peer for all neighbors. will be used by bgpdctl | |||
2004-01-01 | typo | Henning Brauer | |
2004-01-01 | now that imsg_get uses bigger buffers, one read call can put more than one | Henning Brauer | |
imsg into the buffer. since imsg_get by definition only returns one imsg we missed the next imsg(s) until the next poll event on the socket in question, building up a queue on that socket. didn't show up as a problem yet... factor out imsg_read, which reads into the buffer. imsg_get now entirely operates on the buffers and does not read(2) itself. make all callers cope by calling imsg_read on poll events and calling imsg_get in a loop until all imsgs are processed. | |||
2004-01-01 | conf -> mconf | Henning Brauer | |
causes a conflicht with upcoming changes | |||
2004-01-01 | Crank SHMMAXPGS from 2048 to 8192. Other platforms where people | Todd C. Miller | |
are using lots of shm may also wish to also increase SHMMAXPGS. OK deraadt@ | |||
2004-01-01 | Crank SHMMNI from 32 -> 128 and SHMSEG from 8 -> 128. OK deraadt@ | Todd C. Miller | |
2004-01-01 | Oops, commited from the wrong tree. | Miod Vallat | |
2004-01-01 | post-INSTALL script falling -> record installation as a borked package | Marc Espie | |
instead of aborting outright with loads of files unregistered... | |||
2004-01-01 | avoid redundant calls to sis_stop() for shared irqs; from freebsd; ok deraadt@ | Markus Friedl | |
2004-01-01 | more cancellation points. | Brad Smith | |
ok marc@ |