Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-08-04 | group all of the on-stack variables that are uses by the nfsm_macros | Thordur I. Bjornsson | |
to keep the data munging "state" into an nfsm_info structure. Each function now has this structure on its stack, and it and its members are now passed around so that the macros/functions can work there magic. this will make removing the nfsm_* macros way easier. Idea/code picked up from DragonflyBSD. Tested by krw@, jacekm@ and myself. OK blambert@. | |||
2009-08-03 | Comment fixes and code tidy-up (whitespace and more consistent | Stuart Henderson | |
numeric values) from Brad. No binary change. | |||
2009-08-03 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok jsg@ | |||
2009-08-03 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok dlg@ | |||
2009-08-03 | By popular demand and peer pressure, check-in work in progress work to support | Miod Vallat | |
the Yeelong Lemote mips-based netbook. Kernel bits only for now, needs polishing; most of this work done during h2k9 last month, although the porting effort started earlier this year. | |||
2009-08-02 | Preserve joined interface groups when tun(4) is switched | Marco Pfatschbacher | |
between layer 2 and 3 tunneling mode. OK claudio@, markus@ | |||
2009-08-02 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok mglocker@ jsg@ | |||
2009-08-02 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok miod@ | |||
2009-08-02 | Dynamic buffer cache support - a re-commit of what was backed out | Bob Beck | |
after c2k9 allows buffer cache to be extended and grow/shrink dynamically tested by many, ok oga@, "why not just commit it" deraadt@ | |||
2009-08-02 | Never return nonzero in a device activate method invoked with DVACT_ACTIVATE, | Miod Vallat | |
for this prevents it to be invoked with DVACT_DEACTIVATE later. This had been sweeped some time ago already, but bad constructs crept in again. | |||
2009-08-02 | Minor KNF from Brad. No binary change. | Stuart Henderson | |
2009-08-02 | sync | Stuart Henderson | |
2009-08-02 | Add PCIE/KT devices for Intel Q45. From Brad; in datasheet/pciids, | Stuart Henderson | |
PCIE also in Windows inf. | |||
2009-08-01 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok michele@ claudio@ | |||
2009-07-31 | remove unused variable definition; unbreaks kernel build. | Stuart Henderson | |
"do it" marco@ | |||
2009-07-31 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok jakemsr@ | |||
2009-07-31 | Factor out code for checking if a chunk is already in use. | Joel Sing | |
ok marco@ | |||
2009-07-31 | Clean up debug droppings. | Joel Sing | |
ok marco@ | |||
2009-07-31 | raidp is degraded when n - 1 disks are online, not offline. | Joel Sing | |
ok marco@ | |||
2009-07-31 | on error, just call unload() instead of doing all the actions that it | Owain Ainsworth | |
would do manually. sparc64 does a similar thing already. ok kettenis@ | |||
2009-07-31 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok art@ | |||
2009-07-31 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok jsg@ | |||
2009-07-31 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok jsg@ | |||
2009-07-31 | By popular demand and peer pressure, check-in work in progress work to support | Miod Vallat | |
the Yeelong Lemote mips-based netbook. Kernel bits only for now, needs polishing; most of this work done during h2k9 last month, although the porting effort started earlier this year. | |||
2009-07-31 | By popular demand and peer pressure, check-in work in progress work to support | Miod Vallat | |
the Yeelong Lemote mips-based netbook. Kernel bits only for now, needs polishing; most of this work done during h2k9 last month, although the porting effort started earlier this year. | |||
2009-07-31 | By popular demand and peer pressure, check-in work in progress work to support | Miod Vallat | |
the Yeelong Lemote mips-based netbook. Kernel bits only for now, needs polishing; most of this work done during h2k9 last month, although the porting effort started earlier this year. | |||
2009-07-31 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok mpf@ | |||
2009-07-30 | Make sure the BUS_SPACE_BARRIER_xxx constants are all non-zero and can be | Miod Vallat | |
or'ed together, even on platforms where bus_space_barrier() ignores the barrier argument yet. | |||
2009-07-30 | Get rid of the obsolet BUS_BARRIER_xxx constants for bus_space_barrier(), only | Miod Vallat | |
provide and use BUS_SPACE_BARRIER_xxx. | |||
2009-07-30 | Put the correct value in the I/O BAR for ACX100 cards. | Miod Vallat | |
ok claudio@ | |||
2009-07-30 | timeout_add -> timeout_add_msec + associated cleanup | Bret Lambert | |
ok miod@ | |||
2009-07-30 | We enable POOL_DEBUG (except in a release) | Theo de Raadt | |
2009-07-30 | Disable interrupts when we enter cpu_intr() and enable them again when leaving | Mark Kettenis | |
that function. It seems this function was intended to be called with interrupts disabled but that is not (no longer?) the case. As a result there were some races accessing the list of interrupt handlers and we would leave the function with interrupts disabled if there were any interrupts pending. This could make us end up in the idle loop with interrupts disabled, which would "hang" the machine. Found with help from deraadt@ | |||
2009-07-30 | make sure we only ever try to read out post-op attributes | Thordur I. Bjornsson | |
or wcc data if we have a proper reply. found the hard way by ariane@, tested by ariane@. OK blambert@ | |||
2009-07-30 | Simplify the ipgphy(4) attach routine a bit by making use of | Stuart Henderson | |
mii_phy_add_media() to set the media types and adjust the anegticks as appropriate. From FreeBSD via Brad. Tested by jasper@. No objections after being posted on tech@. | |||
2009-07-30 | Attach to VSC8211, CS8244, VSC8601 PHYs. From Brad. | Stuart Henderson | |
2009-07-30 | Attach to BCM5761. From Brad. | Stuart Henderson | |
2009-07-30 | regen | Stuart Henderson | |
2009-07-30 | Add BCM5761 PHY, from Brad. | Stuart Henderson | |
2009-07-29 | Fix bogus comment; requested by deraadt@ | Mark Kettenis | |
2009-07-29 | Get rid of non-equivalent aliases of the pcb by moving the fpu state out | Mark Kettenis | |
of the pcb and using the p_addr member of 'struct proc' to calculate the address of the kernel stack when switching to virtual mode after taking a trap. Remove the now unecessary cache flushes; they're actually harmful since they create non-equivalent aliases. This seems to fix the memory corruption we have been observing from time to time. This diff does not rename fpu_curpcb, which is now somewhat incorrectly named. I hope to change things back again as soon as we are able to map the pcb 1:1. | |||
2009-07-29 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok martynas@ | |||
2009-07-29 | sitecom needs comma | Martynas Venckus | |
2009-07-29 | - WL168 -> WL168V4 | Martynas Venckus | |
- P5B, WUSB54GCV2, WL168V1 ok jsg@ | |||
2009-07-29 | sync | Martynas Venckus | |
2009-07-29 | regen | Damien Bergamini | |
2009-07-29 | PCI ids for Ralink RT3090/RT3390 devices | Damien Bergamini | |
2009-07-29 | - add couple of new urtw, Linksys WUSB54GC v2, Sitecom WL-168 v1. | Martynas Venckus | |
from realtek windows driver - and also P5B Deluxe; from asus - WL168 is actually WL168 rev. 4 ok jsg@ | |||
2009-07-29 | timeout_add -> timeout_add_msec | Bret Lambert | |
ok damien@ | |||
2009-07-29 | regen | Damien Bergamini | |