Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-15 | more RT2770/RT2870/RT3070/RT3071 product ids. | Damien Bergamini | |
driver coming soon. | |||
2008-12-15 | Reflect kernel changes. Labels are no more per link unique | Michele Marchetto | |
and operations are now stored in rt_flags. This also simplify a lot the syntax. ok claudio@ laurent@ | |||
2008-12-15 | Initial fixup of sockaddr_mpls struct. | Michele Marchetto | |
Remove smpls_in_iface as labels must be per platform unique. Remove smpls_out_iface. It is redudant and can be inferred from nexthop. Move smpls_operation to rt_flags and temporary remove smpls_out_exp. ok claudio@ | |||
2008-12-15 | tweak the defaults to also do -M if you ask for info on a given package. | Marc Espie | |
2008-12-15 | Cleanup the temporary directory in all the error paths. | Federico G. Schwindt | |
ajacoutot@ ok. | |||
2008-12-15 | remove unused vars; damien@ ok. | Federico G. Schwindt | |
2008-12-15 | a little more clarity on link aggregation, after some discussion | Jason McIntyre | |
with mpf; ok mpf | |||
2008-12-15 | correct the description of fstat output for sockets; | Jason McIntyre | |
reported by Stephan A. Rickauer ok otto | |||
2008-12-15 | remove i386-only inline assembler roll() function; gcc optimises the | Damien Miller | |
equivalent C code into a rol instruction anyway (confirmed with objdump -d); "nuke it" weingart@ | |||
2008-12-15 | revert 1.20 now that the new allocator is used to control the number of | Brad Smith | |
RX buffers allocated. ok dlg@ | |||
2008-12-14 | MCLGETI takes an mbuf *, not an mbuf. | David Gwynne | |
2008-12-14 | Allow trunk_hashmbuf() to take HW VLAN tagging into consideration. | Brad Smith | |
ok mpf@ naddy@ | |||
2008-12-14 | Since trunk_hashmbuf() and thus trunk_lb_gethdr() are no longer specific | Brad Smith | |
to the loadbalance code rename trunk_lb_gethdr() to just trunk_gethr(). ok mpf@ | |||
2008-12-14 | Make sure the low water mark for cluster pools isn't 0 such that network | Mark Kettenis | |
drivers are guaranteed to make progress. We could probably set it to 1, but we set it to 2, to make sure drivers that link descriptors don't link a descriptor back to itself. ok deraadt@, dlg@ | |||
2008-12-14 | Switch gem(4) over to using MCLGETI when allocating mbufs for the rx ring. | Mark Kettenis | |
help from dlg@, tested by a few, ok dlg@ | |||
2008-12-14 | Files under /incoming don't need flock(2)ing anymore. | Jacek Masiulaniec | |
ok gilles@ | |||
2008-12-14 | O_TRUNC is redundant if O_EXCL is specified. | Jacek Masiulaniec | |
ok gilles@ | |||
2008-12-14 | O_TRUNC is redundant if O_EXCL is specified. | Jacek Masiulaniec | |
ok gilles@ | |||
2008-12-14 | queue_create_incoming_layout must return 0 on failure, not -1. | Jacek Masiulaniec | |
ok gilles@ | |||
2008-12-14 | Disable TX_DMA writing back DDONE into TXD. | Damien Bergamini | |
Some micro-optimizations while I'm here. | |||
2008-12-14 | Implement a "machine xir" ddb command, making it possible to send an | Mark Kettenis | |
External Initiated Reset (XIR) to processors. A XIR is non-maskable and will drop us at the PROM ok prompt. This makes it possible to diagnose problems where a CPU is spinning with interrupts disabled. For now, this is only supported on machines with bbc(4). | |||
2008-12-14 | o Correctly clear UGEN_ASLP in all cases. | Federico G. Schwindt | |
o Use the timeout for isochronous transfers as well o Allow to set the timeout for both, read and write From FreeBSD. you@ ok some time ago. | |||
2008-12-14 | txpower range checks should be inclusive. | Jonathan Gray | |
From FreeBSD via mickey in pr 6024. ok damien@ | |||
2008-12-14 | display message is +DISPLAY; from Ingo Schwarze | Jason McIntyre | |
ok espie | |||
2008-12-14 | - properly handle RT2860_TX_RX_COHERENT interrupts. | Damien Bergamini | |
- update ic_dtim_count and make use of the new ieee80211_notify_dtim function. - add explicit barriers. - cleanup as usual. | |||
2008-12-14 | Add an ieee80211_notify_dtim() function that drivers should call after | Damien Bergamini | |
every DTIM in HostAP mode. Flushes all group addressed MSDUs buffered at the AP for power management. | |||
2008-12-14 | Remove useless fields from template, they just serve to confuse | Ray Lai | |
users. Idea okayed by art and deraadt, feedback from jmc. | |||
2008-12-14 | Give names to anonymous unions. | Ray Lai | |
Worked on with mglocker. OK mglocker | |||
2008-12-14 | regen | Brad Smith | |
2008-12-14 | Add the Novatel Merlin X950D ExpressCard. | Brad Smith | |
2008-12-13 | Properly restore PSTATE_IE when returning from send_softint(). | Mark Kettenis | |
Fixes "ipi_send: couldn't send ipi" panics. | |||
2008-12-13 | IMSG_* namespace cleanup. | Jacek Masiulaniec | |
ok gilles@ | |||
2008-12-13 | Detect alias duplicates. | Jacek Masiulaniec | |
ok gilles@ | |||
2008-12-13 | Fix few parsing bugs in parse_entry, most severe of which was | Jacek Masiulaniec | |
segv on lines consisting exclusively of whitespace. ok gilles@ | |||
2008-12-13 | Simplify parse_entry; streamline the code to call db->put in one | Jacek Masiulaniec | |
place, regardless of number of preexisting aliases. Don't call db->sync; it's covered by db->close shortly before rename. ok chl@ gilles@ | |||
2008-12-13 | If parse_aliases fails, don't warn about syntax errors; it may fail | Jacek Masiulaniec | |
for other reasons. Never exit outside main; we need to return to main to clean the temp file. Check parse_entry return code; otherwise $? == 0 even when invalid entries were found. ok gilles@ | |||
2008-12-13 | Use mkstemp instead of mkdtemp; also, add more X's. | Jacek Masiulaniec | |
Do chmod before rename to eliminate short time window when aliases.db is "official" but not readable. Use PATH_ALIASESDB instead of hardcoding "/etc/mail/.." Check db->close return code. ok gilles@ henning@ | |||
2008-12-13 | - Correct usage text. | Jacek Masiulaniec | |
- Drop static qualifiers. - Drop unused -d switch. - Use 0/1 exit codes instead of <sysexits.h> defines. ok gilles@ | |||
2008-12-13 | Another camera that works, 'Sure' mglocker@ | Ian Darwin | |
2008-12-13 | use the hardware general-purpose timer interrupt instead of timeout(9). | Damien Bergamini | |
clean up the ctl_ridx mess. | |||
2008-12-13 | Declare alias_parse in smtpd.h, and fix callers that pass it wrong | Jacek Masiulaniec | |
number of arguments. ok gilles@ | |||
2008-12-13 | clear the WCID, pairwise keys, shared keys, IV/EIV tables in NIC memory | Damien Bergamini | |
*after* resetting the hardware. otherwise the tables contain garbage. should fix most of the weird issues people were facing. scary. | |||
2008-12-13 | ;5Anvidia mcp67 ahci controller also needs special handling. | Mike Belopuhov | |
from Marko Pecic. thanks! | |||
2008-12-13 | My camcorder works now, too :-) | Marcus Glocker | |
2008-12-13 | sync | Theo de Raadt | |
2008-12-13 | note to everyone: nitems(pointer) is 0, not what you want | Theo de Raadt | |
2008-12-12 | __isinff and __isnanf | Martynas Venckus | |
2008-12-12 | Check for zero'd spd data even if we pass the checksum | Jonathan Gray | |
and don't offer a match in this case. Deals with the qemu "TODO: Populate SPD eeprom data." tested by todd@ | |||
2008-12-12 | Make bgpctl priority aware. | Claudio Jeker | |
2008-12-12 | Make bgpd route priority aware and while there sync in the basics to correctly | Claudio Jeker | |
track multipath routes. Code is mostly stolen from similar fixes to ospfd but a bit different as this kroute.c implementation is more complex because of additional task (nexthop verification for example). This change and the similar ospfd change were desperatly needed on larger complex network setups which tended to end up in situation where the kernel had a different oppinion about routing than the daemon. Now the situation should be a lot better. Tested and OK sthen@ gollo@ |