Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-07-09 | from netbsd: | Theo de Raadt | |
The Sony camera reports itself as a "disk", not a "simplified direct access" device -- ergo, it is "SCSI", not "RBC". | |||
2004-07-09 | brings in a few fixes from NetBSD... | Brad Smith | |
- fix typo in comment: resister -> register - Remove an unreachable return statement (and fix a whitespace nit) - Fix some DPRINTF statements to deal with bus_addr_t and bus_size_t types defined in terms if 'int' instead of 'long'. - use u_long for extent_alloc_subregion result instead of bus_addr_t ok deraadt@ | |||
2004-07-09 | Do not compile non-us keyboard tables on alpha if SMALL_KERNEL, as an | Miod Vallat | |
expedient to s(h)ave more bytes on the installation media. Prompted by deraadt@ | |||
2004-07-09 | qbus vector counting, too; from hugh | Theo de Raadt | |
2004-07-09 | typo. Bruno Rohee | Jun-ichiro itojun Hagino | |
2004-07-09 | go away statics | Niklas Hallqvist | |
2004-07-08 | Make 0/0 table entries work; also fix a problem setting the network mask | Ryan Thomas McBride | |
on v6 addresses. Reported by Ilya A. Kovalenko, fix from Cedric Berger. | |||
2004-07-08 | put "do { } while (0)" wrappers on all the debug maroc functions | Theo de Raadt | |
2004-07-08 | put "do { } while (0)" wrappers on all the debug maroc functions | Theo de Raadt | |
2004-07-08 | we don't care about copyout's success. add a comment to appease sturm@ | Ted Unangst | |
2004-07-08 | Move carp_output() call to after mcopy of MAC address so the virtual address | Ryan Thomas McBride | |
does not get overwritten. Report and fix from Chris Pascoe. | |||
2004-07-08 | enclose some MP-only things in #ifdef MULTIPROCESSOR | David Krause | |
ok deraadt@ niklas@; testing by pvalchev@ | |||
2004-07-08 | nforce3; downsj | Theo de Raadt | |
2004-07-07 | new-style interrupt counters. based on initial work by hugh. ok miod | Theo de Raadt | |
2004-07-07 | Funny typo. | Miod Vallat | |
2004-07-07 | Only drain the transmit queue if we are idling the transmit section. | Todd C. Miller | |
From NetBSD (dyoung) | |||
2004-07-07 | After we wait for the MAC's transmit section to idle, drain the | Todd C. Miller | |
transmit queue and cancel the watchdog timer. Fixes the annoying "atw0: transmit timeout" messages. From NetBSD (dyoung) | |||
2004-07-07 | Check for ATW_C_BBPTYPE_RFMD in switch statement (not currently supported). | Todd C. Miller | |
From NetBSD (dyoung) | |||
2004-07-07 | The ADM8211C uses a different BBP type-number for RFMD parts than | Todd C. Miller | |
the original ADM8211. From NetBSD (dyoung) | |||
2004-07-07 | Fix typo: change ATW_RFTYPE_RFMD and family to ATW_BBPTYPE_RFMD. | Todd C. Miller | |
This does not make any functional difference: each manufacturer's RF type-number is the same as its BBP type-number. From NetBSD (dyoung) | |||
2004-07-07 | use the do { .. } while(0) wrapper | Theo de Raadt | |
2004-07-07 | fix an issue when scripts are exec'd under systrace where | marius eriksen | |
the argv[0] would be normalized, and hence break scripts that depend on how they were called. this fixes an issue in the ports builds. ok provos@ deraadt@; lots of testing during hackathon sturm@ naddy@ | |||
2004-07-07 | skip wdc at isa on media; idea from miod | Theo de Raadt | |
2004-07-07 | a bit more silence during bus handovers; loki@animata.net | Theo de Raadt | |
2004-07-07 | silence something | Theo de Raadt | |
2004-07-07 | copyright dates sync; loki@animata.net | Theo de Raadt | |
2004-07-07 | Changes EHCI_QTD_TOGGLE to EHCI_QTD_TOGGLE_MASK; loki@animata.net | Theo de Raadt | |
2004-07-06 | assert is dumb dumb dumb; no objection from miod | Theo de Raadt | |
2004-07-06 | use MALLOC/FREE for fixed size buffer allocations | Michael Shalayeff | |
2004-07-06 | only pull in a.out stuff if COMPAT_SUNOS | Theo de Raadt | |
2004-07-06 | backout rev 1.3, it breaks simultaneous close (no FIN set for retransmits) | Markus Friedl | |
ok deraadt, henning, itojun | |||
2004-07-06 | regen | Brad Smith | |
2004-07-06 | add Planex and Corega Ethernet | Brad Smith | |
2004-07-06 | from netbsd, via loki@animata.net: revision 1.62. Log message: | Theo de Raadt | |
Fix an error in a debug printf(). | |||
2004-07-06 | sent in by loki@animata.net: This includes all the changes from netbsd | Theo de Raadt | |
related to working with the data toggle, but also includes some endian fixes. The major changes in the netbsd code were in revisions 1.55 and 1.64. their log messages are: 1.55: Set the data toggle correctly, and use EHCI_QTD_DTC. This fixes problems with my ALi-based drive enclosure (it works now, rather than failing to attach). Also seems to work with a GL811-based enclosure and an ASUS enclosure with a CD-RW, on both Intel and NEC controllers. Note: The ALi enclosure is currently very SLOW, due to some issue with taking too long to notice that the QTD is complete. This requires more investigation. 1.64: Further cleanup of toggle handling. Now that we use EHCI_QH_DTC, we don't need to fiddle with the TOGGLE bit in the overlay descriptor, so minimize how much we fuss with it. | |||
2004-07-06 | from netbsd, via loki@animata.net, ehci.c revision 1.58 without some | Theo de Raadt | |
printfs that are more related to the data toggle. log message: Fix a stupid bug in ehci_check_intr() that caused use to try to complete a transaction that was still running. Now ehci can handle multiple devices being active at once. | |||
2004-07-06 | from netbsd, via loki@animata.net, ehci.c revision 1.56 sans some debugging | Theo de Raadt | |
printfs that crept in. log message: Failure to properly mask off UE_DIR_IN from the endpoint address was causing OHCI_ED_FORMAT_ISO and EHCI_QH_HRECL to get set spuriously, causing rather interesting lossage. | |||
2004-07-06 | Replace magic number with a more descriptive #define. This magic number was | Aaron Campbell | |
particularly vile because it looks like a typo (i.e., looks like one "f" is missing), but it's really not. I happened to notice this myself, but the fix is inspired by NetBSD in the interest of keeping the code similar. deraadt@ ok | |||
2004-07-05 | Allocate buffers in randomread and randomwrite via malloc instead | Todd C. Miller | |
of from the stack. Keeps us from running out of kernel stack during stack-heavy networking load. The bug manifests as a panic during bootup with an fpu-related assertion failure on i386. Fix from Christopher Pascoe; commit requested by deraadt@ | |||
2004-07-05 | remove some stuff to make the blocks slightly smaller. we could go further | Theo de Raadt | |
still. tested by matthieu | |||
2004-07-05 | clean & knf | Theo de Raadt | |
2004-07-05 | do not queue events when no daemon running. flush all events on last close. | Theo de Raadt | |
ok tedu | |||
2004-07-05 | sync various changes in old_identifycpu() into identifycpu() | David Krause | |
first step toward merging these two functions ok deraadt@ | |||
2004-07-05 | Completes the structs for the isochronous and split transaction | Theo de Raadt | |
isochronous transfer descriptor types. Also updates the doco link at the top of the file; from netbsd; via loki@animata.net | |||
2004-07-05 | Adds missing port routing rules field, fixes an incorrect offset for | Theo de Raadt | |
EHCI_QH_GET_CTL and adds a macro for setting the data toggle on a qtd token; from netbsd; via loki@animata.net | |||
2004-07-05 | This fixes a couple of spelling errors (EHCI_HCS_P_INCICATOR to | Theo de Raadt | |
EHCI_HCS_P_INDICATOR and EHCI_QG_MPLMASK to EHCI_QH_MPLMASK); from netbsd; via, loki@animata.net | |||
2004-07-05 | KNF | Henning Brauer | |
2004-07-04 | sync | Theo de Raadt | |
2004-07-04 | shrink, shrink, shrink | Theo de Raadt | |
2004-07-04 | - two typos, stallen -> stolen | Brad Smith | |
- cast base correctly for format string From NetBSD ok deraadt@ |