summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-06-19Avoid using the rfact member of 'struct sensor' which is on its way out.Mark Kettenis
2006-06-19unbreak the code if compiled with IEEE80211_DEBUG by using the rightReyk Floeter
node attribute. ok damien@, figured out by claudio@
2006-06-19if at startup a given group has carpdemote == 0, we don't do carp demotion.Henning Brauer
now, once all sessions went to established, we start doing demotion, so that when one drops and has dmeotion enabled, we actually demote. ok claudio
2006-06-19Remove freebsdism.Michael Knudsen
input and ok mickey.
2006-06-19Unbreak the tree. The code to set and unset the RTF_MPATH bit on all multipathClaudio Jeker
routes did not carefully check if the route lookup succeded or not and so rn_mpath_next(rn) blowed up because rn was NULL. Check if rnh_lookup succeded before touching rn in anyway. OK norby@ initial diff by hshoexer@
2006-06-19add the new ASIC revs to the bge_majorrevs table.Brad Smith
2006-06-19add new PCI ids.Brad Smith
2006-06-19Close a race in the interrupt handler code.Dale Rahn
Inline functions when it makes sense.
2006-06-19some new ASIC revisions.Brad Smith
2006-06-19kill local and remote callback and just have one called fileproc.Joris Vink
we let the commands pass the correct function. all in preparation for remote.
2006-06-19regenBrad Smith
2006-06-19add some more Broadcom Gig PCI ids.Brad Smith
From the Linux tg3 driver.
2006-06-19pcn no longer fits, sighTheo de Raadt
2006-06-19Zap Amiga bits of disklabel.h now that Amiga bits of readdisklabel() areKenneth R Westerback
gone. 'go ahead' deraadt@
2006-06-18Make mpi not spit out WWNN and WWPN as requested by deraadt and dlg. DoMarco Peereboom
store these values in the scsi_link structure for each device. ok dlg.
2006-06-18Fix memleak; From Coverity Scan, CID 3135.Jasper Lievisse Adriaanse
From simonb NetBSD ok naddy@, otto@
2006-06-18tsk, tsk, tsk... the rule is simple: any define consisting ofOtto Moerbeek
more than one token MUST be put in parentheses!
2006-06-18s/memcmp/IEEE80211_ADDR_EQ/Damien Bergamini
2006-06-18- implement new ic_updateslot() callback.Damien Bergamini
- in hostap mode, we defer update of the slot time until all associated STAs are notified with updated beacons.
2006-06-18Improve 802.11b/g interoperability and move toward better complianceDamien Bergamini
with IEEE Std 802.11g-2003 standard: - add ERP Information Element in probe responses and beacons - keep track of the number of associated non-ERP STAs and non-short slot time capable STAs in the BSS - enable use of RTS/CTS or CTS-to-self protection when required by the BSS - add a ic_updateslot() callback to notify drivers of slot time changes - cleanup computation of mgmt frames sizes in ieee80211_output.c - nuke unnecessary <sys/cdefs.h> includes - remove an unused macro (LOGICALLY_EQUAL) while i'm here From {free,net}bsd, with additional fixes. ok brad@, reyk@
2006-06-18adopt to recent changesHans-Joerg Hoexer
2006-06-18add group "none"; when choosen, pfs will be disabled.Hans-Joerg Hoexer
ok david msf
2006-06-18append to CFLAGS instead of overwritingDavid Krause
ok kettenis@ miod@
2006-06-18typo: queu -> queueHans-Joerg Hoexer
ok claudio@
2006-06-18syncTheo de Raadt
2006-06-18Under certain circumstances, ext2fs_inactive() can be called without aPedro Martelletto
backing dinode, in which case we just want to recycle the vnode. Fixes a crash reported by reyk@, okay krw@, mickey@ and pat@.
2006-06-18fix a commentHenning Brauer
2006-06-18make cloned sessions appear with RECONF_REINIT so they are treated likeHenning Brauer
peers added at runtime
2006-06-18enable packet bursting when operating as a STA.Damien Bergamini
limit bursts to 8 frames.
2006-06-18enable udcf(4) on sparc64, works on my Blade 100; ok mbalmer@Christian Weisgerber
2006-06-18Whitespace, oops.Christopher Pascoe
2006-06-18Add support for equal-cost multipath IP.Christopher Pascoe
To minimise path disruptions, this implements recommendations made in RFC2992 - the hash-threshold mechanism to select paths based on source/destination IP address pairs, and inserts multipath routes in the middle of the route table. To enable multipath distribution, use: sysctl net.inet.ip.multipath=1 and/or: sysctl net.inet6.ip6.multipath=1 testing norby@ ok claudio@ henning@ hshoexer@
2006-06-18clean up some gotos. Originally from Andrey Matveev <evol at onlineHans-Joerg Hoexer
dot ptt dot ru>. Ok and help moritz@
2006-06-18regenBrad Smith
2006-06-18add some additional LSI Logic PCI ids.Brad Smith
From the LSI Linux MPT driver.
2006-06-18Don't walk memory whenever there is nothing there. I ran into this whileMarco Peereboom
debugging FC stuff.
2006-06-18Print World Wide Node Name and World Wide Port Name during dmesg so thatMarco Peereboom
we can actually find the drives on the fabric. Requested by kettenis krw and brad. ok dlg
2006-06-17Better checks to avoid attaching when device is not present.Dale Rahn
2006-06-17Fix error where soft irq mask was not initialized for IPL_HIGH, and cleanup.Dale Rahn
2006-06-17prefix debug messages with the device nameJolan Luff
2006-06-17s/int/u_int/gDamien Bergamini
2006-06-17KNF and destatic functions.Michael Knudsen
ok brad
2006-06-17protect those files against multiple inclusions too.Damien Bergamini
2006-06-17Move AMRR rate control algorithm out of wpi(4) and ural(4), into net80211.Damien Bergamini
ok brad@
2006-06-17Import frequency conrrection code from dragonfly, whith some changes:Otto Moerbeek
only do frequency compensation if the clock is synced, and a slightly diffent way of computing the linear regression. You'll need a recent kernel and libc to use this. Testing by naddy@ and ckuethe@ and others, thanks! ok henning@
2006-06-17Fix a bug that AUDIO_MIXER_READ returns an incorrectBrad Smith
mixer_ctrl_t::un.value.num_channels in the case of the combination of a mono pin and a stereo mixer. From kent NetBSD
2006-06-17- re-enable AMRRDamien Bergamini
- unmap the good buffer in wpi_tx_intr
2006-06-17check return values of azalia_init_corb() and azalia_init_rirb().Brad Smith
From kent NetBSD
2006-06-17Don't return low level errors to userspace in p4tcc_setperf().Dimitry Andric
requested by deraadt@, ok gwk@
2006-06-17add sys/timeout.hBrad Smith