aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/if_ndis
Commit message (Expand)AuthorAgeFilesLines
...
* Do not call ndis_setstate_80211() until we are ready to associate, the vap mayAndrew Thompson2008-05-011-11/+9
* Unify all the wifi *_ioctl routinesAndrew Thompson2008-05-011-12/+50
* Multi-bss (aka vap) support for 802.11 devices.Sam Leffler2008-04-202-329/+229
* Change the 1 in callout_init to CALLOUT_MPSAFE. I made the change in myColeman Kane2008-04-171-1/+1
* Change the timeout(9) usage in if_ndis to a callout(9) implementation,Coleman Kane2008-04-172-10/+7
* Use pause(9) instead of a tsleep() on a stack variable.John Baldwin2008-01-171-1/+1
* sc->ndis_tq variable is only initialized when a driver module is for wirelessAndrew Thompson2007-12-091-2/+4
* Preallocate some space to return the scan results, some drivers do not properlyAndrew Thompson2007-12-071-9/+25
* Cast address of 'bssid' to uint8_t since printf() expects to get unsignedWojciech A. Koszek2007-12-041-1/+1
* Remove compatibilty defines to simplify reading the code, this is around 10% ofAndrew Thompson2007-12-033-325/+0
* Hide a debug printf, NDIS_DEBUG is always defined and we test the sysctl.Andrew Thompson2007-12-021-3/+5
* Rename the kthread_xxx (e.g. kthread_create()) callsJulian Elischer2007-10-201-1/+1
* Fix up ndis interaction with net80211Andrew Thompson2007-07-261-59/+98
* Improve the net80211 handling within ndisAndrew Thompson2007-07-122-158/+303
* finish removing usb_port.h macros.Warner Losh2007-06-181-14/+14
* Expand USB_ATTACH_{ERROR,SUCCESS}_RETURN inline and eliminate fromWarner Losh2007-06-121-3/+3
* Update 802.11 wireless support:Sam Leffler2007-06-111-15/+20
* Initialize irql to something prior to calls that (might) set it.Matt Jacob2007-05-201-1/+1
* Use strcasecmp() from libkern.Pawel Jakub Dawidek2007-04-061-4/+4
* change ic_modecaps to a bit vector and use setbit, et. al.Sam Leffler2007-03-111-18/+17
* Fix shared authentication mode.Jung-uk Kim2006-12-281-0/+8
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-061-5/+6
* Static -> static.Matt Jacob2006-09-071-3/+3
* Catch up with USB changes, device_ptr_t was removed, we need device_t here.Tom Rhodes2006-09-071-3/+3
* When ndis_attach() runs, it has to very briefly initialize the cardBill Paul2006-02-041-14/+34
* In ndis_rxeof_eth(), avoid acquiring the NDIS miniport block spinlock forBill Paul2005-12-161-2/+4
* The latest version of the Intel 2200BG/2915ABG driver (9.0.0.3-9) fromBill Paul2005-11-061-7/+6
* Tests with my dual Opteron system have shown that it's possibleBill Paul2005-11-021-3/+0
* Fix ndis_getstate_80211() so that it properly reports the authmodeBill Paul2005-10-291-32/+77
* Correct some __FreeBSD_version conditionals to use version bumps closerBill Paul2005-10-252-12/+27
* Do not allow ndis_ticktask() to run after ndis_halt_nic() has been called.Bill Paul2005-10-241-0/+11
* Correct the size used to allocate ndis_txarray. It should beBill Paul2005-10-191-1/+1
* Another round of cleanups and fixes:Bill Paul2005-10-182-16/+103
* Fix build: remove stale KASSERT() for mutex that no longer exists.Bill Paul2005-10-111-2/+0
* Grrr. Add one more missing NDIS_UNLOCK().Bill Paul2005-10-101-1/+3
* Add missing NDIS_UNLOCK() in one of the failure cases in SIOCGPRIVATE_0.Bill Paul2005-10-101-1/+3
* This commit makes a big round of updates and fixes many, many things.Bill Paul2005-10-102-483/+849
* Remove bridge(4) from the tree. if_bridge(4) is a full functionalMax Laier2005-09-271-2/+0
* Make sure that we call if_free(ifp) after bus_teardown_intr. Since weWarner Losh2005-09-191-2/+3
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-9/+9
* Modify device drivers supporting multicast addresses to lock if_addr_mtxRobert Watson2005-08-031-0/+3
* Move if_alloc() higher in the attach function so sc->ifp is populatedBrooks Davis2005-06-141-6/+6
* Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis2005-06-102-27/+29
* Remove bus_{mem,p}io.h and related code for a micro-optimization on i386Yoshihiro Takahashi2005-05-291-2/+0
* Deal with a few bootstrap issues:Bill Paul2005-05-201-1/+1
* In ndis_halt_nic(), invalidate the miniportadapterctx early to try andBill Paul2005-05-201-2/+0
* Correct type for workitem routines.Bill Paul2005-05-161-3/+3
* Add support for NdisMEthIndicateReceive() and MiniportTransferData().Bill Paul2005-05-152-0/+226
* More fixes for multibus drivers. When calling out to the matchBill Paul2005-05-082-4/+14
* Fix support for Windows drivers that support both PCI and PCMCIA devices atBill Paul2005-05-081-1/+2