aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/fxp
Commit message (Expand)AuthorAgeFilesLines
* Update comment to match reality.Maxim Sobolev2003-04-161-2/+1
* - Don't call pci_enable_io() in drivers (unless needed for resume).Matthew N. Dodd2003-04-161-10/+4
* - Express hard dependencies on bus (pci, isa, pccard) andMatthew N. Dodd2003-04-151-2/+4
* Use pci_enable_{busmaster|io}() instead of directly writing intoMaxim Sobolev2003-04-141-3/+3
* Before attaching device set PCIM_CMD_PORTEN in addition toMaxim Sobolev2003-04-141-2/+2
* - Call ether_ifdetach() before shutting down the hardware.Maxime Henrion2003-04-111-20/+18
* - Clean up the fxp_release() and fxp_detach() functions.Maxime Henrion2003-04-101-46/+46
* - Pass a busdma tag and a busdma map to fxp_dma_wait() so thatMaxime Henrion2003-04-081-8/+13
* Add an XXX comment for the atomic operation in the __alpha__Maxime Henrion2003-04-081-1/+3
* - Endian fixes.Maxime Henrion2003-04-081-5/+6
* Fix the hangs people have been seeing. For some reason, theMaxime Henrion2003-04-081-11/+7
* Correct the maxsize and maxsegsz parameters for theMaxime Henrion2003-04-071-7/+7
* Remove an erroneous htole16(). The byte_count field in theMaxime Henrion2003-04-071-1/+1
* Move a bus_dmamap_sync() to the correct place.Maxime Henrion2003-04-061-1/+1
* Because alpha can't access memory in 16-bit granularity,Maxime Henrion2003-04-061-7/+11
* Revert the s/u_int/u_int8_t/ changes, we can't really use otherMaxime Henrion2003-04-061-22/+22
* Use __FBSDID.Maxime Henrion2003-04-061-1/+3
* Correct the definition of the link_addr and rbd_addr fieldsMaxime Henrion2003-04-061-2/+2
* - Instead of rolling our own alignment-safe function, use le32enc()Maxime Henrion2003-04-061-78/+66
* - Use __FXP_BITFIELDX macros to make the configuration bitfieldMaxime Henrion2003-04-051-81/+99
* - Change a FXP_NRFABUFS which would have been a FXP_NTXCB.Maxime Henrion2003-04-051-3/+3
* Setup our interrupt only at the end of fxp_attach(), when allMaxime Henrion2003-04-051-12/+12
* Remove useless initialization.Maxime Henrion2003-04-031-1/+0
* Fix fxp(4), this changed shouldn't have crept in.Maxime Henrion2003-04-031-2/+2
* Remove all the bogus volatile qualifiers from the structs definitionsMaxime Henrion2003-04-032-148/+146
* Convert the fxp(4) driver to the busdma API.Maxime Henrion2003-04-023-229/+452
* Correct names for fxp devices. Sort data by devid inJohn Polstra2003-03-081-20/+20
* Finish driving a stake through the heart of netns and the associatedPeter Wemm2003-03-051-5/+0
* Remember to set if_capenable when setting up checksum offload in fxp_attach().Bill Paul2003-02-271-0/+1
* As previously threatened, add TCP/IP checksum offload support toBill Paul2003-02-263-10/+236
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-3/+3
* Add PCI id for fxp(Intel Pro/100 M Mobile Connection).MIHIRA Sanpei Yoshiro2003-01-271-0/+1
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-3/+3
* network interface driver changes:Sam Leffler2002-11-141-12/+8
* Properly fix the occassional random crash issue that revision 1.142Ian Dowse2002-11-072-31/+24
* Revision 1.136 introduced two features that may cause undefinedIan Dowse2002-10-301-1/+14
* '&' is not needed to pointerize functions.Poul-Henning Kamp2002-10-201-2/+2
* Add some PCI id's for fxp. I've only tested 0x103B, but the IntelPaul Saab2002-09-241-0/+4
* Increase size of ifnet.if_flags from 16 bits (short) to 32 bits (int). To avoidMaxim Sobolev2002-08-181-2/+2
* use the new interface to ether_input(), with eh = NULL andLuigi Rizzo2002-08-091-7/+1
* Use m_getcl() to allocate buffers for the receive ring.Luigi Rizzo2002-08-051-11/+2
* Fix handling of Receiver Not Ready errors when doing polling.Luigi Rizzo2002-08-041-49/+81
* Revert rev 1.131.Mike Silbersack2002-07-291-4/+2
* whitespace commit: fix indentation in fxp_intr_body.Luigi Rizzo2002-07-291-96/+96
* Fix if_timer logic so that there is always a timeout pending if thereLuigi Rizzo2002-06-301-2/+4
* Add another Intel chipset (i82562).Mike Silbersack2002-06-291-0/+1
* Add device id. for fxp chip on Intel D845EPT2L boards. This seems toDoug Ambrisko2002-06-051-0/+1
* Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin2002-04-042-2/+3
* Remove mbuf exhaustion warning messages; these are handled by theMike Silbersack2002-02-041-4/+0
* Initialize the sysctl_ctx list early, which avoids a panic in case otherJonathan Lemon2002-01-221-1/+1