Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-05 | Mention that /usr/src is now needed to build xenocara. | Matthieu Herrb | |
ok jmc@, oga@. | |||
2008-10-05 | Remove IOAPIC ID remapping code. It should not be necessary to avoid reusing | Mark Kettenis | |
LAPIC IDs and if there are MPBIOSes we handle them with ACPI now. ok deraadt@ | |||
2008-10-05 | Oops. Missed one typo jmc@ spotted. | Kenneth R Westerback | |
2008-10-05 | Clarify discussion of option modifiers. They only affect values passed | Kenneth R Westerback | |
to dhclient-script. Our default script only uses a few options so others are unaffected by option modifiers. PR#5834 is thus rendered moot. Feedback & suggestions from jmc@, ok deraadt@. | |||
2008-10-05 | the ellipsis allow more than one operand being specified. | Igor Sobrado | |
ok jmc@ | |||
2008-10-05 | Always update published link state even if the internal link state doesn't | Mark Kettenis | |
change. Prevents us from getting stuck in LINK_STATE_UNKNOWN. Fixes PR 5914. tested by deraadt@, sthen@ ok deraadt@ | |||
2008-10-05 | In malloc_page_free(), restore the correct wire_count value. | Miod Vallat | |
2008-10-05 | Add missing argument to printf. | Mark Kettenis | |
2008-10-04 | The wrong byte of the return code was being looked at for the | Theo de Raadt | |
PCI probe. Yuichiro Goto, PR 5048 It would be nice if someone with a "pci0 at mainbus0 bus 0: configuration 2" system would double check this and mail us back. ok toby | |||
2008-10-04 | regen | Mark Kettenis | |
2008-10-04 | Some AMD RS780 IDs (same as those listed under ATI). | Mark Kettenis | |
2008-10-04 | Fix potentially uninitialized variables in syscall(). | Miod Vallat | |
2008-10-04 | Remove bogus code from the error path in sr_raid0_rw(); ok marco@ | Miod Vallat | |
2008-10-04 | Commit cleanup part of the diff that was backed out in the previous commit | Mark Kettenis | |
(removal of unused functions). requested by deraadt@ | |||
2008-10-04 | More Linksys models (to match the Netgear ones) from PR 3879. I am not | Theo de Raadt | |
adding the PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID version though without proof that it actually exists. | |||
2008-10-04 | this is not the cvtql/sv opcode. ok miod@, naddy@ | Martynas Venckus | |
2008-10-04 | At clock initialization, if we discover that tickadj is 0 (due to very | Theo de Raadt | |
high HZ) set it to 1, to avoid various divide-by-zero errors later Based on discussion in PR 5511 ok miod | |||
2008-10-04 | When closing the video stream switch back to default interface as last | Marcus Glocker | |
action. Shuts down the device gracefully. | |||
2008-10-04 | tighter specs (tested for ages locally) | Marc Espie | |
2008-10-04 | explicitly pad & pack the packetdata structure thrown around on the wire, | Theo de Raadt | |
just like in traceroute6. | |||
2008-10-04 | sync | Theo de Raadt | |
2008-10-03 | Repair strnvis() buffersize of 4*n+1, with termination gauranteed by the | Theo de Raadt | |
function. spotted by des@freebsd, who commited an incorrect fix to the freebsd tree and (as is fairly typical) did not report the problem to us. But this fix is correct. ok djm | |||
2008-10-03 | sync with grand.central.org; prompted by pr#5817 | Todd T. Fries | |
2008-10-03 | Backout. kettenis@ has reservations. | Tobias Weingartner | |
2008-10-03 | Use ether_ioctl(). | Brad Smith | |
2008-10-03 | Return ENOTTY for unknown ioctl's. | Brad Smith | |
2008-10-03 | NUL not NULL | Theo de Raadt | |
2008-10-03 | Readability changes. | Marc Balmer | |
2008-10-03 | KNF and readability changes; no binary changes. | Marc Balmer | |
2008-10-03 | reduce rbyte cache to 512 bytes, no measurable slowdown (even in the | Otto Moerbeek | |
threaded case) but much smaller working set; prompted by and ok deraadt@ | |||
2008-10-03 | beef up the description of -D a little, and don;t imply the | Jason McIntyre | |
option somehow terrorises spamd-setup; | |||
2008-10-03 | save and restore errno on success. while it is not stricly needed for | Otto Moerbeek | |
non-syscalls, there's just too much code not doing the right thing on error paths; prompted by and ok deraadt@ | |||
2008-10-03 | -D before -d; | Jason McIntyre | |
2008-10-03 | zap __arc4_getbyte(), it was only used by the old malloc; ok millert@ | Otto Moerbeek | |
kurt@ | |||
2008-10-03 | when increasing the size of a larger than a page allocation try | Otto Moerbeek | |
mapping the region next to the existing one first; there's a pretty high chance there's a hole there we can use; ok deraadt@ tedu@ | |||
2008-10-03 | avoid spitting up regions when purging stuff from the cache, it puts | Otto Moerbeek | |
too much pressure on the amaps. ok tedu@ deraadt@ | |||
2008-10-03 | Make extra cpu's in DDB not spin in tight loop. | Tobias Weingartner | |
Having them 'hlt' is a good thing, especially where thermal management (acpi, etc) is concerned. They wake up lots due to local tick timer anyhow. ok gwk@ | |||
2008-10-03 | Add openbsd-submit.mc, a custom version submit.mc and revert the | Todd C. Miller | |
existing submit.mc to the stock version. Closes PR 4951. OK sthen@ martynas@ | |||
2008-10-03 | Unify code between the various flavors of imsg buffer.c. | Eric Faurot | |
Use unsigned int for msg_iovlen. ok henning@ claudio@ | |||
2008-10-03 | and.. another option device.. | Theo de Raadt | |
2008-10-03 | sync | Theo de Raadt | |
2008-10-03 | another option hdspa | Theo de Raadt | |
2008-10-03 | sync | Theo de Raadt | |
2008-10-03 | New option -D to daemonize spamd-setup for early bootup use. This avoids | Theo de Raadt | |
spamd-setup hanging if there are various (network?) issues and the system not proceeding to multiuser so that this can be debugged. We do not use & for startup in /etc/rc because this makes the spamd-setup a child of the rc scripts after bootup (that is gross) Problem reported in PR 5864, change discussed with beck, ok millert | |||
2008-10-03 | do not give an example of how to chmod files: we can presume the user | Jason McIntyre | |
knows that. removes an ambiguity in the permission of authorized_keys; ok deraadt | |||
2008-10-03 | correct comment; a part of PR4184 | Theo de Raadt | |
2008-10-03 | Repair long group handling; Alf Schlichting, PR 4164 | Theo de Raadt | |
2008-10-03 | Remove shared-network from the sample config, people who need | Stuart Henderson | |
that should expect to read the manual anyway and it's caused some confusion in the past. Add example entries for fixed-address and pxeboot. ok krw@ | |||
2008-10-03 | Use correct function signature when calling the write_host_header hook. | Marc Balmer | |
from Josh Elsasser <josh@elsasser.org>, thanks. | |||
2008-10-03 | Mask crcval in the right place, avoiding segfault during save | Stuart Henderson | |
on 64-bit arch. (The save format is not portable, however). Looks right to deraadt@. |