summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-09-11Remove the BCM4322 id. This is a 802.11n chipset and also requires v4 firmware.Brad Smith
2008-09-11regenBrad Smith
2008-09-11Re-add the Broadcom BCM4321 and BCM4322 PCI ids and correct the previousBrad Smith
entry labeled as BCM4322 which is actually a serial port.
2008-09-11regenMark Kettenis
2008-09-11Revert previous commit; it introduces duplicate #defines.Mark Kettenis
2008-09-11since these got no ieee-specific code anymore, add fmin, fmax, fdim,Martynas Venckus
fminf, fmaxf, fdimf, fdiml for VAX. looks good to millert@
2008-09-11- make much more readable: don't reimplement isnan, signbit eachMartynas Venckus
time we need them ok millert@
2008-09-11In rlphy_service() for the MII_TICK case don't bother to check whetherBrad Smith
the currently selected media is of type IFM_AUTO as autonegotiation does not need to be kicked anyway.
2008-09-11Mbit/s -> MbpsBrad Smith
pointed out by jmc@
2008-09-11- MBit/s -> MbpsBrad Smith
- Separate the notes about the 21143/21145 based adapters and the line `For more information on configuring this device..'
2008-09-11Fix a typo.Brad Smith
2008-09-11regenBrad Smith
2008-09-11Add Broadcom BCM4321 and BCM4322 PCI ids.Brad Smith
2008-09-11issue a NOTE_TRUNCATE if the file size has shrinkedThordur I. Bjornsson
ok tedu@, blambert@, art@
2008-09-11remove hackery to un-demote after the session has been established forHenning Brauer
a while, we can now just use a timer (since i rewrote the timer code)
2008-09-11only send eow and no-more-sessions requests to openssh 5 and newer;Markus Friedl
fixes interop problems with broken ssh v2 implementations; ok djm@
2008-09-11regenMiod Vallat
2008-09-11Broadcom BCM4315.Miod Vallat
2008-09-11Thermal Zone entities might not be direct object references, but namedMiod Vallat
references. Account for this, and the hp530 laptop won't spontaneously power down thinking internal temperature is over 500C. ok marco@
2008-09-11Use & not && to mask bits.Jonathan Gray
ok miod@
2008-09-11Make that test pass on 64 bit platforms as well.Miod Vallat
2008-09-11ANSI function declarations.Brad Smith
2008-09-11Remove the redundant local variable 'revision' from the PCI attach function.Brad Smith
The softc field dc_revision contains the PCI revision. No functional change.
2008-09-11+SparkLAN WCFM-100 to the malo(4) list;Jason McIntyre
2008-09-11Add missing license. Copy the license used elsewhere with the dc(4) driver.Brad Smith
2008-09-11Do not clean ${PACKAGES} as this is the source files, if run without obj dirDale Rahn
present, it will delete the source files. Found by Steven Roberts.
2008-09-11For chips with a broken DC_ISR_RX_STATE which never signalsBrad Smith
stopped nor the waiting state and also no other means to check whether the receiver is idle, we have no choice but to call mii_tick unconditionally even in the case of the DC_REDUCED_MII_POLL handling as far as the RX side is concerned. This isn't necessarily worse than checking whether RX is idle though because unlike as with TX we're racing with the hardware, which might receive packets any time while we poll the MII, anyway. Fixes the use of trunk(4) with the affected interfaces. From FreeBSD
2008-09-11add support for arm9e core, taken from NetBSD.Kevin Lo
ok drahn@
2008-09-10Correct capitalization of NetFlow.Brad Smith
2008-09-10sync synopsis and usage; documentation tweaks.Igor Sobrado
ok jmc@
2008-09-10simpler;Jason McIntyre
2008-09-10add support for the PCA9555 device which has 16 instead of 8 pins.Reyk Floeter
ok deraadt@
2008-09-10pflow related stuff, reminded by jmcHenning Brauer
2008-09-10Properly free allocated memory if carp_demote_get encounters an error.Tobias Stoeckmann
ok henning@
2008-09-10Proper format string modifiers and missing includes to get correct prototypesMiod Vallat
on 64-bit systems.
2008-09-10+.Xr pflow 4 ,Jason McIntyre
2008-09-10some pflow tweaks;Jason McIntyre
2008-09-10Convert timeout_add() calls using multiples of hz to timeout_add_sec()Bret Lambert
Really just the low-hanging fruit of (hopefully) forthcoming timeout conversions. ok art@, krw@
2008-09-10There's no need to fully traverse the wakeup queue when waking a specificBret Lambert
process sleeping on a unique address (wakeup -> wakeup_one) ok guenther@, tedu@, art@
2008-09-10icmp_reflect reuses mbufs. call pf_pkt_addr_changed to clear the stateHenning Brauer
key stuff.
2008-09-10re-enable the state key linking. i believe the bugs that hit us shortlyHenning Brauer
before release are fixed, and the extra check i added prevents incorrect linking if there are still cases with tunnels, tho none of the testers saw these yet, except for an icmp case that will be fixed shortly. the extra check prevents misbehavior there. if you see 'pf: state key linking mismatch' messages please report them to me along with ifconfig -A and mention if you do any routing or nat tricks. ok deraadt
2008-09-10use one call to arc4random_buf() instead of lots of arc4random()Damien Miller
2008-09-1040-bit GART support for PCIE devices. From drm git a while ago.Owain Ainsworth
Tested by a few, no regressions for normal use.
2008-09-10Kill the max_context member of the softc, it does nothing useful.Owain Ainsworth
2008-09-10do not try to print $$ when it has not been setTheo de Raadt
2008-09-10bzero' the option buffer with the correct buffer size. this fixesReyk Floeter
incomplete buffer initialization and possible incorrect option handling. Thanks to Nick Bender ok krw@ deraadt@
2008-09-09SparkLAN WCFM-100 reported to work byJonathan Gray
Bryan Vyhmeister.
2008-09-09Kill some stupid agp api wrapper functions, just use the agp apiOwain Ainsworth
directly. While i'm here, factor out some common functionality into a separate function, and kill some typedefs (man this code is full of them...). Shaves another 450 bytes off the kernel. Tested by ckuethe and Paul de Weerd, thanks.
2008-09-09fix printing by group name (eg. ifconfig em), do not abort in theReyk Floeter
initial getinfo(), and remove a few superfluous warnings there. ok deraadt@
2008-09-09sigh, gamma got lostMartynas Venckus