Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-06-19 | Avoid using the rfact member of 'struct sensor' which is on its way out. | Mark Kettenis | |
2006-06-19 | Avoid using the rfact member of 'struct sensor' which is on its way out. | Mark Kettenis | |
2006-06-19 | unbreak the code if compiled with IEEE80211_DEBUG by using the right | Reyk Floeter | |
node attribute. ok damien@, figured out by claudio@ | |||
2006-06-19 | Remove freebsdism. | Michael Knudsen | |
input and ok mickey. | |||
2006-06-19 | Unbreak the tree. The code to set and unset the RTF_MPATH bit on all multipath | Claudio 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-19 | add the new ASIC revs to the bge_majorrevs table. | Brad Smith | |
2006-06-19 | add new PCI ids. | Brad Smith | |
2006-06-19 | Close a race in the interrupt handler code. | Dale Rahn | |
Inline functions when it makes sense. | |||
2006-06-19 | some new ASIC revisions. | Brad Smith | |
2006-06-19 | regen | Brad Smith | |
2006-06-19 | add some more Broadcom Gig PCI ids. | Brad Smith | |
From the Linux tg3 driver. | |||
2006-06-19 | pcn no longer fits, sigh | Theo de Raadt | |
2006-06-19 | Zap Amiga bits of disklabel.h now that Amiga bits of readdisklabel() are | Kenneth R Westerback | |
gone. 'go ahead' deraadt@ | |||
2006-06-18 | Make mpi not spit out WWNN and WWPN as requested by deraadt and dlg. Do | Marco Peereboom | |
store these values in the scsi_link structure for each device. ok dlg. | |||
2006-06-18 | s/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-18 | Improve 802.11b/g interoperability and move toward better compliance | Damien 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-18 | Under certain circumstances, ext2fs_inactive() can be called without a | Pedro 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-18 | enable packet bursting when operating as a STA. | Damien Bergamini | |
limit bursts to 8 frames. | |||
2006-06-18 | enable udcf(4) on sparc64, works on my Blade 100; ok mbalmer@ | Christian Weisgerber | |
2006-06-18 | Whitespace, oops. | Christopher Pascoe | |
2006-06-18 | Add 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-18 | regen | Brad Smith | |
2006-06-18 | add some additional LSI Logic PCI ids. | Brad Smith | |
From the LSI Linux MPT driver. | |||
2006-06-18 | Don't walk memory whenever there is nothing there. I ran into this while | Marco Peereboom | |
debugging FC stuff. | |||
2006-06-18 | Print World Wide Node Name and World Wide Port Name during dmesg so that | Marco Peereboom | |
we can actually find the drives on the fabric. Requested by kettenis krw and brad. ok dlg | |||
2006-06-17 | Better checks to avoid attaching when device is not present. | Dale Rahn | |
2006-06-17 | Fix error where soft irq mask was not initialized for IPL_HIGH, and cleanup. | Dale Rahn | |
2006-06-17 | prefix debug messages with the device name | Jolan Luff | |
2006-06-17 | s/int/u_int/g | Damien Bergamini | |
2006-06-17 | KNF and destatic functions. | Michael Knudsen | |
ok brad | |||
2006-06-17 | protect those files against multiple inclusions too. | Damien Bergamini | |
2006-06-17 | Move AMRR rate control algorithm out of wpi(4) and ural(4), into net80211. | Damien Bergamini | |
ok brad@ | |||
2006-06-17 | Fix a bug that AUDIO_MIXER_READ returns an incorrect | Brad 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 AMRR | Damien Bergamini | |
- unmap the good buffer in wpi_tx_intr | |||
2006-06-17 | check return values of azalia_init_corb() and azalia_init_rirb(). | Brad Smith | |
From kent NetBSD | |||
2006-06-17 | Don't return low level errors to userspace in p4tcc_setperf(). | Dimitry Andric | |
requested by deraadt@, ok gwk@ | |||
2006-06-17 | add sys/timeout.h | Brad Smith | |
2006-06-17 | add sys/timeout.h | Brad Smith | |
2006-06-17 | add sys/timeout.h | Brad Smith | |
2006-06-17 | add sys/timeout.h | Brad Smith | |
2006-06-17 | In p4tcc, only check cpu stepping for the Pentium 4 family. Also kill | Dimitry Andric | |
some trailing whitespace. ok gklok@ | |||
2006-06-17 | When multipath routes are inserted, ensure that RTF_MPATH is set for any | Christopher Pascoe | |
previous route that may not have been inserted with the -mpath flag. Similarly, when removing a multipath route and leaving only one route, clear the RTF_MPATH flag so this is clear. ok claudio@ | |||
2006-06-17 | Refuse to mount a ffs fielsystems whose number of frags is not 1, 2, 4 or 8, | Miod Vallat | |
and remove the corresponding panics in low level code. ok pedro@ weingart@ | |||
2006-06-17 | Introduce pmap_kenter_cache(), similar to pmap_kenter_pa() but allowing | Miod Vallat | |
the pte cache bits to be specified. Will be used very soon. | |||
2006-06-17 | Recent Powerbook systems have their on-board keyboard and mouse devices | Miod Vallat | |
also showing up as usb devices, but both devices are tied. To make things less confusing, do not attach the usb phantoms at all. | |||
2006-06-17 | adopt to extended rtrequest / rtalloc1 api | Henning Brauer | |
2006-06-17 | udcf(4) no longer needs the file sys/dev/clock_subr.c to be compiled and linked | Marc Balmer | |
to the kernel, the two functions it used from this file are now included in the driver itself (like in nmea(4)). udcf(4) can now be enabled to the zaurus, too. in fact on all arches that have USB support. | |||
2006-06-17 | unbreak; from theo | Henning Brauer | |
2006-06-17 | Dont disable siop, add pcalcd, commented for now (no gpioctl on ramdisk). | Dale Rahn | |