Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-01-31 | Don't use RYEL as error indicator in T1 ESF mode. For some reason it toggles | Claudio Jeker | |
on a more or less regular basis. Looks like the example configuration from the bt8370 datasheet is not correct. Hard to debug T1 here in Europe :( | |||
2006-01-31 | fix error message | Damien Miller | |
2006-01-31 | the TCP SACK option needs sequence number modulation | Mike Frantzen | |
ok dhartmei@ and beck@. help + testing from kpfaff AT palloys.com.pl | |||
2006-01-30 | When delivering SIGFOO, make sure the siginfo code is a FOO_xxx constant; | Miod Vallat | |
also deliver SIGILL/ILL_COPROC rather than SIGFPE/FPE_FLTINV for disabled or missing floating point support. | |||
2006-01-30 | Better siginfo field values for fpe failures. | Miod Vallat | |
2006-01-30 | Do not disable frame buffer interrupts in the match() function, but rather | Miod Vallat | |
in attach(). | |||
2006-01-30 | swap B and R in 24bpp and 32bpp modes too; tested martin@ | Miod Vallat | |
2006-01-30 | Remove dead code; we should never see T_DNA here. | Mark Kettenis | |
ok weingart@, miod@ | |||
2006-01-30 | fix updating of tables associated with interface groups used in | Henning Brauer | |
pass to (ifgroup) style notation. instead of walking the list of associated dynaddrs with a pf-abstracted interface which might not be present when there is no reference to them in the rulset, and checking their pointer back to the interface for group memberships, walk the groups an interface is member of directly. even makes the code easier. tests & ok bob ryan markus + tested moritz | |||
2006-01-30 | pretty printf, for 32bit mode | Martin Reindl | |
ok miod@ | |||
2006-01-30 | Add basic radiotap support. Modelled somewhat after | Jonathan Gray | |
ral and NetBSD wi radiotap. "looks ok" damien@ | |||
2006-01-30 | only flush the TX descriptors in re_start() if there are packets | Brad Smith | |
to be transmitted. tested by jsg@ | |||
2006-01-30 | reduce the timeout waiting for command completions from 5 seconds to .1 | David Gwynne | |
seconds. i think if the bus is wired up wrong the command never completes, which in turn generates a 3 minute delay during boot while we try to scan for i2c devices. problem reported by Johan Mson Lindman who is also happy with the fix. | |||
2006-01-29 | remove printf on ath_cardbus_power; reyk@ ok. | Federico G. Schwindt | |
2006-01-29 | regen | Brad Smith | |
2006-01-29 | add VT6410 IDE PCI id. | Brad Smith | |
2006-01-29 | Disable iic whenever ipmi is enabled. This fixes boxes like Sun x4200 that | Marco Peereboom | |
freak out when more than one device driver touch the i2c devices. Reported by: Srebrenko Sehic <ssehic at gmail dot com> ok kettenis@ | |||
2006-01-29 | SMC91CXX NuBus hooks | Martin Reindl | |
from NetBSD | |||
2006-01-29 | re-enable scatter and fix scanning of 802.11a channels. | Damien Bergamini | |
2006-01-29 | Don't probe address 0x4f. | Mark Kettenis | |
ok deraadt@ | |||
2006-01-29 | Add a alpha_shared_intr_reset_strays() function that resets the stray | Martin Reindl | |
interrupt counter for a given shared interrupt descriptor. When an interrupt is successfully handled, reset the strays counter, thus preventing a "slow leak" from eventually shutting off the interrupt vector. from NetBSD via KUDO Takashi | |||
2006-01-29 | Use usbd_clear_endpoint_stall_async() when clearing endpoint stalls in | Brad Smith | |
an interrupt context. From NetBSD ok dlg@ | |||
2006-01-29 | prettify dmesg output a touch. from Michael Knudsen. | David Gwynne | |
ok brad@ | |||
2006-01-29 | Don't ask bus_dmamem_alloc() for zero bytes. 'bioctl -H x:y amiz' no | Kenneth R Westerback | |
longer triggers a panic. ok marco@ dlg@. | |||
2006-01-29 | index the drive labels from 0 instead of 1 to match the labels on the front | David Gwynne | |
of the machine. also helps line things up between sensors and bioctl. ok marco@ | |||
2006-01-28 | Fix hmac calculation. | Marco Pfatschbacher | |
Add some f's; do comparison in host byte order. OK mcbride@ | |||
2006-01-28 | a little cleaning. | Brad Smith | |
2006-01-28 | Move address checks forward. Cleanup comments. | Mark Kettenis | |
2006-01-28 | Consider temperatures below -45 degC to be invalid for Winbond chips. | Mark Kettenis | |
2006-01-28 | Disable ds1624/ds1631/ds1721 probe. | Mark Kettenis | |
requested by deraadt@ | |||
2006-01-28 | Rename lm_isa.c to lm78_isa.c. Now that there isn't really any NetBSD code | Mark Kettenis | |
left, replace copyright with my own. requested by deraadt@ | |||
2006-01-28 | Rename lm_i2c.c to lm78_i2c.c. | Mark Kettenis | |
requested by deraadt@ | |||
2006-01-28 | remove 2 printf's from dc_coal() too. | Brad Smith | |
2006-01-28 | get rid of the sensors globals. theyre were only used by sysctl for | David Gwynne | |
locating and finding the correct sensor to spit out. instead provide a a sensor_get function that wraps up the access to the vars. theyre now safe inside kern_sensors.c. theres also a touch of whitespace tweaking ok grange@ | |||
2006-01-28 | Make sure that HW VLAN stripping is not enabled and remove unused code | Brad Smith | |
for HW VLAN stripping. | |||
2006-01-28 | remove printf's from dc_newbuf(). | Brad Smith | |
2006-01-27 | Oops, removed too many includes in 1.34 by mistake; spotted matthieu@ | Miod Vallat | |
2006-01-27 | Use letoh32 to print out configuration descriptors in debug functions. Now | Claudio Jeker | |
big endian systems will print out correct settings. | |||
2006-01-27 | add iwi(4). | Brad Smith | |
From: Pedro la Peu via PR 4992 | |||
2006-01-26 | Add glenv(4). | Mark Kettenis | |
tested by jmc@ | |||
2006-01-26 | Fix printf. | Mark Kettenis | |
2006-01-26 | Make lm at iic detach properly, and use config_detach(9) to fully detach | Mark Kettenis | |
lm at iic if we attach lm at isa for the same chip. tested by robert@, krw@ | |||
2006-01-26 | make timecounter behave; grange@ ok | Michael Shalayeff | |
2006-01-26 | Make T1 work on the dual port version. Time slot map is different than on | Claudio Jeker | |
the single port T1 version. Most notably T1 uses now timeslots 1-24 and not 0-23 no matter what type of card. | |||
2006-01-26 | Some fixes to make the card work on big endian systems. Still not enough | Claudio Jeker | |
though. | |||
2006-01-26 | Switch to __HAVE_DEVICE_REGISTER to find the device we're booted from. | Miod Vallat | |
Tested by aoyama@ | |||
2006-01-26 | Fix character range check in local atoi() function. krw@ "looks correct" | Aaron Campbell | |
2006-01-26 | regen | Brad Smith | |
2006-01-26 | add Promise SATA-II chipsets and fix ordering of some existing entries. | Brad Smith | |
2006-01-25 | Wow, this is clearly wrong (found in esa_set_params): | Brad Smith | |
if (p->channels < 1 && p->channels > 2) return EINVAL; Change the 'and' to an 'or' so the check actually does something. From jmcneill NetBSD ok krw@ |