Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-11-27 | typos; ok jmc@ | Martynas Venckus | |
sys/dev/pci/pciide.c from naddy@ | |||
2007-11-25 | spelling fixes, from Martynas Venckus; | Jason McIntyre | |
2007-10-11 | treat usb vendor/product names as a locator, and have usbd_print handle it, | Theo de Raadt | |
so that it shows up before the :. as a result, all the usb devices do not need to have name printing code anymore. all this now works and prints nicely because usbd_probe_and_attach() is serialized. ok kettenis | |||
2007-10-06 | Another NPBFILTER comment typo. | Jonathan Gray | |
From Jung <moorang@gmail.com> | |||
2007-09-17 | remove unneeded malloc.h include. | Federico G. Schwindt | |
2007-07-18 | replace the ieee80211_wepkey structure with a more generic ieee80211_key | Damien Bergamini | |
one that can be used with other ciphers than WEP. | |||
2007-06-14 | Remove the definition and usage of the USB_DECLARE_DRIVER_CLASS and | Marc Balmer | |
USB_DECLARE_DRIVER macros. No binary change. ok dlg. | |||
2007-06-12 | Remove the definition and use of the device_ptr_t which was a struct device *. | Marc Balmer | |
No binary change. ok mk. | |||
2007-06-10 | Remove the definition and use of the USBDEVNAME macro. | Marc Balmer | |
(This might look easy, but it was a big diff. Thanks to dlg and especially jsg for looking over it; we found at least four mistakes in the initial diff.) ok jsg. | |||
2007-06-09 | Remove the definition and use of if_deactivate(). It was defined empty and | Marc Balmer | |
thus produced no code at all. No binary change. ok jsg. | |||
2007-05-27 | Farewell USB_{ATTACH,MATCH,DETACH}* you will not be missed. | Jonathan Gray | |
ok deraadt@ krw@ mbalmer@ | |||
2007-04-10 | ``it's'' -> ``its'' when the grammar gods require this change. | Miod Vallat | |
2007-01-02 | Don't use M_DUP_PKTHDR() in the driver bpf hook. Using M_DUP_PKTHDR() on a | Claudio Jeker | |
static mbuf results in a mbuf tag memory leak. Same change as in rum(4). OK mglocker@ | |||
2006-12-21 | 'tranfer' -> 'transfer' in comments. | Kenneth R Westerback | |
2006-11-26 | Make use of ieee80211_std_rateset | Jonathan Gray | |
2006-07-17 | No point in memsetting individual struct members after memsetting the | Michael Knudsen | |
entire struct. ok dlg | |||
2006-07-09 | remove dead code | David Gwynne | |
2006-07-09 | I don't think we're talking about animals in here, so | Michael Knudsen | |
s/wether/whether/g. | |||
2006-06-27 | Add support for max rssi/signal strength percentage on RFMD 2958 | Jonathan Gray | |
based adapters. ok dlg@ | |||
2006-06-23 | In a drivers activate() entry point, if on DVACT_DEACTIVATE it does | Miod Vallat | |
something, then it MUST return zero on DVACT_ACTIVATE, not EOPNOTSUPP; this very popular bug has been cut and pasted a lot of times... ok deraadt@ mickey@ | |||
2006-06-19 | Don't sleep and then say we're going to sleep -- do it the other way | Michael Knudsen | |
around because the other thing is just silly and confusing. ok dlg | |||
2006-05-11 | if (!foo & BAR) bad, if (!(foo & BAR)) better, and I'll have a cookie per | Miod Vallat | |
file. | |||
2006-03-25 | allow bpf(4) to ignore packets based on their direction (inbound or | Damien Miller | |
outbound), using a new BIOCSDIRFILT ioctl; guidance, feedback and ok canacar@ | |||
2006-02-20 | Fix kernel builds without bpfilter. Linking is still broken. | Damien Bergamini | |
"Please commit this diff ASAP" brad@ | |||
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-04 | Remove redundant calls to bpfdetach. | Can Erkin Acar | |
ok brad@ | |||
2005-08-01 | Don't keep the devinfo string on the stack, instead use malloc/free. | Brad Smith | |
This should cure some rare stack overflows. From augustss NetBSD ok dlg@ pascoe@ | |||
2005-07-07 | extend what jcs did a bit further by removing atus storage for the ssid. | David Gwynne | |
now there is no confusion since it is only provided by net80211. | |||
2005-07-07 | initialize Scan.SSID from the right source | joshua stein | |
fixes association with access points with ssid broadcasting disabled ok dlg@ | |||
2005-07-01 | Remove duplicate if_start assignment. ok dlg@ | Jonathan Gray | |
2005-05-23 | Initial radiotap support. ok dlg@ | Jonathan Gray | |
2005-03-08 | add support for the new firmwares and the devices that use them | David Gwynne | |
2005-03-08 | lots of new devices found in a linux driver | David Gwynne | |
2005-03-03 | sort devices and remove a duplicate | David Gwynne | |
2005-03-03 | properly implement hardware wep support. mostly done by jesse off with | David Gwynne | |
some minor cleanup by me | |||
2005-03-03 | some mbuf handling fixes from netbsd | David Gwynne | |
2005-03-03 | OQO model 01 internal wireless. help from many, ok by dlg | Jun-ichiro itojun Hagino | |
2005-02-28 | another fix from netbsd pointed out by jsg@ | David Gwynne | |
Clear IFF_RUNNING flag before aborting usb pipes in atu_stop(). | |||
2005-02-24 | fixes inspired by netbsd and pointed out by jsg@ | David Gwynne | |
- make sure the interface is up before continuing in atu_start - use IFQ_DEQUEUE instead of IF_DEQUEUE | |||
2005-02-17 | derived from NetBSD: | Reyk Floeter | |
--- Make the node table into an LRU cache: least-recently used nodes are at the end of the node queue. Change the reference-counting discipline: ni->ni_refcnt indicates how many times net80211 has granted ni to the driver. Every node in the table with ni_refcnt=0 is eligible to be garbage-collected. The mere presence of a node in the table does not any longer indicate its auth/assoc state; nodes have a ni_state variable, now. While I am here, patch ieee80211_find_node_for_beacon to do a "best match" by bssid/ssid/channel, not a "perfect match." This keeps net80211 from caching duplicate nodes in the table. --- ok deraadt@ dlg@, looks good jsg@ | |||
2005-01-26 | add the Belkin F5D6050 802.11b Wireless Device. from netbsd | David Gwynne | |
2005-01-23 | Add the Askey WLL013. found by jsg in a dmesg | David Gwynne | |
2004-12-30 | get rid of ieee80211 debug output | David Gwynne | |
2004-12-23 | turn padding of tx packets on since it appears it may be needed by certain | David Gwynne | |
firmwares or revisions of the chip. also remove the option to turn it off. | |||
2004-12-20 | lots of minor tweaking and cleanup, removal of unused junk, etc; dlg ok | Theo de Raadt | |
2004-12-13 | endian fixes, ie, atu will now work on big endian architectures. | David Gwynne | |
2004-12-13 | set the buffer up before we try to use it. fixes a panic on sparc64 which | David Gwynne | |
didn't manifest on i386 for some reason. | |||
2004-12-12 | wait till we have root mounted before trying to upload firmwares | David Gwynne | |
2004-12-12 | do a better reattachement of this device | David Gwynne | |