aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/if_ndis
Commit message (Expand)AuthorAgeFilesLines
...
* Recently I realized that the ADMtek 8211 driver wasn't working correctlyBill Paul2004-03-231-3/+4
* Make if_ndis_pci.c and if_ndis_pccard.c use bus_alloc_resource() againBill Paul2004-03-212-12/+12
* Fix another Intel 2200BG bug: don't schedule ndis_ticktask() on mediaBill Paul2004-03-211-1/+2
* - Rewrite the timer and event API routines in subr_ndis.c so that theyBill Paul2004-03-201-1/+1
* Don't announce MAC addresses twice.Matthew N. Dodd2004-03-201-6/+0
* Convert callers to the new bus_alloc_resource_any(9) API.Nate Lawson2004-03-172-12/+12
* Don't set ifp->if_output to ether_output(), since ether_ifattach()Maxime Henrion2004-03-121-1/+0
* Fix the problem with the Cisco Aironet 340 PCMCIA card. Most newer driversBill Paul2004-03-111-0/+123
* Trim unneeded includes from if_ndis_pccard.c and if_ndis_pci.c. Also removedBill Paul2004-03-092-26/+0
* If the resource listing obtained from BUS_GET_RESOURCE_LIST() inBill Paul2004-03-091-0/+20
* Add preliminary support for PCMCIA devices in addition to PCI/cardbus.Bill Paul2004-03-074-222/+648
* Add yet more bulletproofing. This is to guard against the case thatBill Paul2004-02-111-2/+3
* Don't hold NDIS_LOCK() around call to ndis_getstate_80211() since itBill Paul2004-02-071-0/+2
* Implement support for single packet sends. The Intel Centrino driverBill Paul2004-02-031-7/+29
* Use the OID_802_11_CONFIGURATION OID when deciding if the underlying driverBill Paul2004-02-011-2/+4
* Go back to using AUTHMODE_AUTO if WEP is on. In some cases, the CentrinoBill Paul2004-01-291-1/+3
* This should have been checked in as part of the last update to if_ndis.c:Bill Paul2004-01-271-0/+1
* Add a kludge to avoid having ndis_init() called needlessly by dhclientBill Paul2004-01-271-10/+22
* Use the M_BZERO flag with malloc() in a couple of places.Bill Paul2004-01-271-8/+6
* Correct KASSERT() in ndis_destroy(): ndis_mtx is a pointer now.Bill Paul2004-01-251-1/+4
* Add missing newlines to some device_printf()s.Bill Paul2004-01-241-3/+6
* Add suspend and resume methods. I'm not certain this work correctlyBill Paul2004-01-221-0/+36
* Add support for TCP/IP checksum offload.Bill Paul2004-01-222-25/+217
* Correct instances of mtx_lock()/mtx_unlock() that should have beenBill Paul2004-01-201-5/+5
* Properly program the multicast filter in ndis_setmulti(),Bill Paul2004-01-191-31/+86
* Convert from using taskqueue_swi to using private kernel threads. TheBill Paul2004-01-182-40/+27
* The definition for __stdcall logically belongs in pe_var.h, butBill Paul2004-01-151-2/+0
* Ugh. Last commit went horribly wrong. Back out changes to subr_ntoskrnl.c,Bill Paul2004-01-121-7/+8
* Merge in some changes submitted by Brian Feldman. Among other things,Bill Paul2004-01-122-129/+500
* The private data section of ndis_packets has a 'packet flags' byteBill Paul2004-01-091-4/+2
* Correct the definition of the ndis_miniport_interrupt structure:Bill Paul2004-01-082-9/+36
* - Add pe_get_message() and pe_get_messagetable() for processingBill Paul2004-01-061-6/+25
* Modify if_ndis.c so that the MiniportISR function runs in ndis_intr()Bill Paul2004-01-042-4/+31
* In ndis_attach(), report the NDIS API level that the Windows miniportBill Paul2004-01-041-0/+5
* In if_ndis.c:ndis_attach(), temporarily set the IFF_UP flag whileBill Paul2004-01-031-1/+3
* Clean up ndiscvt a bit (leaving out the -i flag didn't work) and addBill Paul2004-01-021-41/+49
* - subr_ntoskrnl.c: improve the _fastcall hack based on suggestions fromBill Paul2003-12-311-16/+19
* - Add new 802.11 OID information obtained from NDIS 5.1 update toBill Paul2003-12-301-9/+62
* Rework resource allocation. Replace the "feel around like a blind man"Bill Paul2003-12-291-60/+74
* Attempt to handle the status field in the ndis_packet oob area correctly.Bill Paul2003-12-261-2/+27
* Back out the last batch of changes until I have a chance to properlyBill Paul2003-12-261-3/+6
* - In ndis_intr(), don't do any interrupt processing if the IFF_UPBill Paul2003-12-251-9/+6
* Avoid using any of the ndis_packet/ndis_packet_private fields forBill Paul2003-12-251-9/+5
* - Add stubs for Ndis*File() functionsBill Paul2003-12-251-5/+1
* - Fix some compiler warnings in subr_pe.cBill Paul2003-12-241-10/+7
* Set up the interrupt earlier in ndis_attach(), because calling theBill Paul2003-12-231-4/+13
* Make the NDIS driver depend on the wlan module now that it hasBill Paul2003-12-231-0/+1
* Re-do the handling of ndis_buffers. The NDIS_BUFFER structure isBill Paul2003-12-231-4/+11
* Big round of updates:Bill Paul2003-12-212-23/+411
* Fix wildcard subsystem case in ndis_probe().Bill Paul2003-12-181-2/+2