Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-07-24 | silent VIA VT6202 workaround; from brad | Theo de Raadt | |
2009-07-24 | add compat support to gdb so that it can deal with libpthread with and | Kurt Miller | |
without the _thread_ctx_offset private symbol. okay kettenis@ | |||
2009-07-23 | Insert free pages at the head of the page queues. Should provide better | Mark Kettenis | |
cache locality and will pave the way for the new pmemrange allocator. Based on hints from art@ and ariane@. ok ariane@, deraadt@, oga@ | |||
2009-07-23 | another lava puc that might show up | Theo de Raadt | |
2009-07-23 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok miod@ | |||
2009-07-23 | - document isadma | Jason McIntyre | |
- clean up the page a little while there help/ok miod | |||
2009-07-23 | None of the server message functions return anything but 0, so make them all | Nicholas Marriott | |
void. Also remove a leftover variable in client.c. | |||
2009-07-23 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok miod@ | |||
2009-07-23 | a trio of timeout_add conversions | Bret Lambert | |
ok miod@ | |||
2009-07-23 | no need for Xo/Xc when we have very simple list items; | Jason McIntyre | |
2009-07-23 | Tidy client message return slightly: convert flags into an enum, and merge | Nicholas Marriott | |
error string into struct client_ctx as well. | |||
2009-07-23 | Switch re(4) over to MCLGETI. | Mark Kettenis | |
ok deraadt@ | |||
2009-07-23 | elide a little bit later, the final list, after From has been | Martynas Venckus | |
appended. properly removes if there's a dup in from & to. ok millert@ | |||
2009-07-23 | VIA VT6202 defaults to a bus-hoggingly aggressive sleep time, so retune it | Theo de Raadt | |
to a more reasonable default. speeds up the armish machines in particular (perhaps because their pci bus is so slow), and has no downside when tested on other machines. from linux originally, via brad, ok drahn | |||
2009-07-23 | Silence some lint warnings about an unreachable return by consolidating | Bret Lambert | |
actual returns (which were returning the same value anyway). ok pyr@ | |||
2009-07-23 | Use pci_mapreg_map() to map ROM. | Mark Kettenis | |
2009-07-23 | Use pci_mapreg_map() to map ROM. | Mark Kettenis | |
2009-07-23 | Avoid twiddling the lower bits of a BAR such that the code becomes usable | Mark Kettenis | |
for mapping ROM BARs. | |||
2009-07-23 | Get rid of bus_mem_add_mapping(). | Miod Vallat | |
2009-07-23 | When computing the total resources required by devices behind a ppb, take | Miod Vallat | |
PCI ROM into account, if any. | |||
2009-07-23 | When configuring devices on the bridge, try and provide resources to map | Miod Vallat | |
their ROM if they have any. | |||
2009-07-23 | Allow __pmap_pv_enter() to fail, instead of dereferencing NULL; and let the | Miod Vallat | |
caller deal with this; this really makes the PMAP_CANFAIL logic work. ok kettenis@ | |||
2009-07-23 | make buf_write() behave like msgbuf_write(): send out only the | Eric Faurot | |
bytes that were filled, not the whole buffer. ok pyr@ gilles@ | |||
2009-07-23 | Add some more udl devices. -moj | Mats O Jansson | |
2009-07-23 | Add some more udl devices. -moj | Mats O Jansson | |
2009-07-23 | sync. -moj | Mats O Jansson | |
2009-07-23 | Add some more udl devices. -moj | Mats O Jansson | |
2009-07-23 | mention the 0,125 resolution, which explains why sysctl(8) may show something | Constantine A. Murenin | |
like "39.38 degC" (i.e. rounded from 39,375) on some newer Phenom II chips as seen on misc | |||
2009-07-23 | Redraw after starting selection to correctly remove any existing selection. | Nicholas Marriott | |
2009-07-23 | Document rdomain keyword, again from stsp@ | Claudio Jeker | |
2009-07-23 | Spelling and comment fixes by stsp@ | Claudio Jeker | |
2009-07-23 | What gets allocated with bus_space_map() needs to be released with | Miod Vallat | |
bus_space_unmap(), not bus_space_free(). Fortunately this file is only used on i386 where bus_space_free() simply invokes bus_space_unmap(). | |||
2009-07-23 | Revert r1.5, I don't like it, new sessions should start off identically - with | Nicholas Marriott | |
the defaults. | |||
2009-07-23 | Adding disabled framework for RAID6 | Jordan Hargrave | |
ok marco@ | |||
2009-07-23 | Remove unused code. | Mark Kettenis | |
ok oga@, jsg@, blambert@, zap zap zap deraadt@ | |||
2009-07-23 | Update bgpctl show next to show all necessary info. This time OK henning@ | Claudio Jeker | |
2009-07-23 | Send the used kroute along with the nexthop information. This allows us | Claudio Jeker | |
to show all necessary information in bgpctl show next. OK henning@ | |||
2009-07-23 | Always print interface names, not just ifindex, even when -n is | Stuart Henderson | |
specified. Most people want -n to avoid reverse DNS lookups, and it's stupid not to print a useful interface name just for that. YES PLEASE! Ok claudio@ | |||
2009-07-23 | Only print unknown in RTM_IFINFO messages when the link is in | Claudio Jeker | |
LINK_STATE_UNKOWN. In the other case use LINK_STATE_IS_UP() to print either "up" or "down". OK henning@, sthen@ | |||
2009-07-23 | C-d is delete as well in emacs mode. | Nicholas Marriott | |
2009-07-23 | Both of cmdclient and curclient CAN be NULL - if the command is executed from | Nicholas Marriott | |
the configuration file. In this case, attach-session can't do much, and new-session should just assume -d. | |||
2009-07-23 | knexthop_compare() failed to compare correctly and because of this it was | Claudio Jeker | |
possible to corrupt the nexthop RB tree. Use the same compare logic used in the kroute compare functions. Nice side effect is a nicely sorted list in bgpctl show next. OK sthen@ henning@ | |||
2009-07-23 | If we initialize miicapabilities, we might as well pass it on when calling | Mark Kettenis | |
mii_attach. Spotted by chl@. Fix inspired by looking at the current NetBSD code. Repeated calls for testing went unanswered. | |||
2009-07-23 | Use the correct buffer for non-zero report IDs in uhidev_set_report(). | Jonathan Gray | |
From Dave Huang via NetBSD rev 1.18. ok miod@ deraadt@ | |||
2009-07-23 | tweak the aibs stuff; | Jason McIntyre | |
2009-07-23 | sync | Theo de Raadt | |
2009-07-23 | reserve a space for aibs(4) in amd64 and i386, commented out for now; ok deraadt | Constantine A. Murenin | |
2009-07-23 | aibs(4) manual page | Constantine A. Murenin | |
2009-07-23 | New aibs(4) driver for ASUSTeK AI Booster (ACPI ATK0110) hardware monitoring, | Constantine A. Murenin | |
with sensor state support through limits provided by the ACPI. Tested on several ASUS motherboards kindly networked by Sam Fourman Jr. ok deraadt marco jordan | |||
2009-07-23 | Don't use the presence of /etc/fstab to determine if all filesystems | Kenneth R Westerback | |
are umount'd at the start of install/upgrade. As halex@ pointed out 'umount -af' doesn't actually use /etc/fstab, so just always do it. Fixes situations where bailing out of install/upgrade before /etc/fstab was created meant filesystems were not umount'd and restarting the install/upgrade would fail. Noticed & prodded deraadt@ |