summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-01-05Random KNF and cleanupAlexander Yurchenko
2006-01-05enable dynamic standby workaround for the 82551 as well.Brad Smith
2006-01-05Kill all typedef struct goo.Marco Peereboom
2006-01-05Disable the minimum size frame bundling when using the CPUSaver microcode.Brad Smith
This could cause 2 interrupts per frame if the frame size is below 128 bytes. From Dmitry Bogdan <dsb at imcs dot dvgu dot ru>
2006-01-05Provide symbolic names for the acpi sleeping states and use it.Alexander Yurchenko
2006-01-05don't include sys/errno.h, pointed out by MiodMartin Reindl
2006-01-05load the CPUSaver 102E microcode for the 82551 Rev 10 chip.Brad Smith
From the Intel e100 driver.
2006-01-05More dead constants.Miod Vallat
2006-01-05A match() function should never, never, ever return UNSUPP for unsupportedMiod Vallat
hardware - if only because UNSUPP is 2, not 0. So you'll match, and later have to do ``oops, twas not my fault, honest'' in attach.
2006-01-05Begone.Miod Vallat
2006-01-05regenBrad Smith
2006-01-05more fxp PCI ids.Brad Smith
From the Intel e100 driver.
2006-01-05Check securelevel and machdep.allowaperture for i386_set_ioperm() theMatthieu Herrb
same way as for i386_iopl(). ok deraadt@
2006-01-05enable ixgbTheo de Raadt
2006-01-05go ahead, enable asmsTheo de Raadt
2006-01-05Work around flawed IBM 325 eServer IPMI implementation.Marco Peereboom
Help and ok deraadt@ jordan@
2006-01-05Better debug verbosity values.Marco Peereboom
2006-01-05Kill ENSURE(), remove ensure.h, say bye bye to fatal_ensure() andClaudio Jeker
one hip hip hooray from Henning.
2006-01-05Adjust debug levels.Marco Peereboom
2006-01-05Fixup stack, it needs 16 bytes headroom. Help from miod@ and drahn.Otto Moerbeek
ok drahn@
2006-01-05Show attribute cache total reference count.Claudio Jeker
2006-01-05Cache optional BGP attributes (mostly communities) and use a simpleClaudio Jeker
pointer plus a ref counter to link the attributes to the path object. Saves +/- 10M on 11 full feeds. Looks good Henning
2006-01-05Make ospfd respect carp(4) interfaces and their weird behaviour. They willClaudio Jeker
not be used to connect to a OSPF cloud and forced to be passive. With this ospfd will only announce the carp interface route if the interface is master. So you can connect a LAN in a redundant way to your ospf backbone. OK norby@
2006-01-05Don't change pins state on attach.Alexander Yurchenko
2006-01-05I got the time scale wrong with the previous commit. Now the advertisedMarco Peereboom
50ms timeout is actually 50ms during runtime.
2006-01-05Improve how ospfd copes with time changes.Esben Norby
ok claudio@
2006-01-05Make it possible to set a default vlan priority to a vlan interface.Esben Norby
ok claudio@ brad@
2006-01-05Make it possible to set a default vlan priority for vlan interfaces.Esben Norby
ok claudio@ brad@
2006-01-05Finish framework for attaching kernel drivers to the GPIO pins.Alexander Yurchenko
Not used yet.
2006-01-05knfAlexander Yurchenko
2006-01-05cleanup, move log.h and rcs.h inclusion into rcsprog.h;Xavier Santolaria
2006-01-05Various I2C updates, cleanups, etc.Alexander Yurchenko
2006-01-05Add my copyright.Alexander Yurchenko
2006-01-05Add SMBus host interface support for amdpm(4).Alexander Yurchenko
ok deraadt@
2006-01-05Happy New Year!Alexander Yurchenko
2006-01-05Reliability fixes:Alexander Yurchenko
- don't force enabling host controller - don't start new transfer if bus is busy - kill transfer on timeout Some ideas from kettenis@; ok deraadt@.
2006-01-05Remove redundant mprotect() calls (we're unmapping the region anyway)Otto Moerbeek
and check user stack for proper alignment. ok tedu@ marc@
2006-01-05interacting with the watchdog while we're in the middle of updating sensorsDavid Gwynne
is bad(tm). if updates are happening then make esm_refresh to do esm_watchdogs work after its own.
2006-01-05rev 1.59 & 1.60 of rtw.c commited by David Young to NetBSD:Jonathan Gray
On a transmit FIFO overflow (err, actually an underflow...) reset both the transmit & receive sections of the MAC. Fix comments and debug printfs: Tx FIFOs underflow, they don't overflow.
2006-01-05part of rev 1.58 of rtw.c David Young comitted to NetBSD:Jonathan Gray
Miscellaneous Realtek RTL8180L driver improvements: 3 Revamp handling of transmit descriptor rings. 4 Reliably IFF_OACTIVE when transmit descriptors are available, to stop the transmit section of the driver from freezing up. 5 Fix beacon transmission in adhoc and hostap modes. XXX There is a wart in hostap mode, where beacons are transmitted at 1/2 the correct rate. Load beacon descriptors when the RTW_INTR_BINT interrupt arrives; schedule RTW_INTR_BINT 1ms ahead of the target beacon time. 6 Recover more gracefully from tx/rx errors: avoid transmitter/receiver/chip resets. Try to re-synchronize software state with hardware state---e.g., load next descriptor pointer from hardware. 7 Activate the transmit watchdog timer for beacons as well as other packets. 8 Introduce rtw_idle() that waits for transmit DMA to finish; call it before resetting the transmitter.
2006-01-05ansi/deregisterJonathan Gray
2006-01-05move malloc lock to libc interface fileTed Unangst
2006-01-05add -Wstrict-prototypes -Wmissing-prototypes -Wsign-compareMarco S Hyman
Minor tweaks to compile with the above, primarily in fixing the conflicts between semaphore.h and rthread.h "i like the additional warnings" tedu@
2006-01-05fix regression test, from artTed Unangst
2006-01-05bzero buffers after malloc, or clear string buffer before strlcpy'ingTheo de Raadt
into them, if you are gonna copy it out to userland some ok dhartmei, some ok tedu
2006-01-05if a kthread fails to call kthread_exit() but instead returns,Ted Unangst
bad things happen. fix acct thread. from art
2006-01-05bzero after malloc; ok dhartmeiTheo de Raadt
2006-01-05syncTheo de Raadt
2006-01-04Adjust timeout values. This was determined by using beck's ibm e325.Marco Peereboom
ok jordan
2006-01-04Make bitfields readable. ok jordan@Marco Peereboom