aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/xe/if_xe.c
Commit message (Expand)AuthorAgeFilesLines
* FCP-101: Remove xe(4)Brooks Davis2019-05-171-2078/+0
* Deprecate a number of less used 10 and 10/100 Ethernet devices.Brooks Davis2018-10-251-0/+2
* ifnet: Replace if_addr_lock rwlock with epoch + mutexMatt Macy2018-05-181-1/+1
* sys/dev: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* Use uintmax_t (typedef'd to rman_res_t type) for rman ranges.Justin Hibbits2016-03-181-2/+2
* Migrate many bus_alloc_resource() calls to bus_alloc_resource_anywhere().Justin Hibbits2016-02-271-4/+4
* These files were getting sys/malloc.h and vm/uma.h with header pollutionGleb Smirnoff2016-02-011-0/+1
* In order to reduce use of M_EXT outside of the mbuf allocator andRobert Watson2015-01-061-2/+1
* Mechanically convert to if_inc_counter().Gleb Smirnoff2014-09-191-17/+17
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-261-0/+1
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-041-2/+2
* Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.Ed Schouten2011-11-071-1/+1
* Add new tunable 'net.link.ifqmaxlen' to set default send interfaceMaxim Sobolev2010-05-031-1/+1
* Use if_maddr_rlock()/if_maddr_runlock() rather than IF_ADDR_LOCK()/Robert Watson2009-06-261-2/+2
* Style(9) xe(4). The MD5 sums are different, but comparing the dissassembliesJohn Baldwin2008-06-041-1498/+1554
* Gah, always reset the timer for the watchdog check.John Baldwin2008-06-041-1/+1
* - Split the interrupt handler up into separate subroutines for rx, tx, andJohn Baldwin2008-06-041-47/+75
* - Change the watchdog timer logic to match other drivers that use their ownJohn Baldwin2008-06-031-10/+16
* Add locking and make xe(4) MPSAFE:John Baldwin2008-06-021-69/+89
* o break newbus api: add a new argument of type driver_filter_t toPaolo Pisati2007-02-231-2/+2
* o Fix printf(9) formatting: do not use hardcode "0x" and "#" flagsMaxim Konovalov2006-04-151-1/+1
* - Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov2005-11-111-2/+2
* Catch up with IFP2ENADDR() type change (array -> pointer).Ruslan Ermilov2005-11-111-1/+1
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-15/+15
* Other changes to this driver preclude its use on 4.x, so remove 4.x compatWarner Losh2005-08-071-4/+0
* Modify device drivers supporting multicast addresses to lock if_addr_mtxRobert Watson2005-08-031-0/+2
* Fix a couple of leaking situations when errors happen.Warner Losh2005-07-151-0/+2
* Stop using OLDCARD shims. rename xe_pccard_match to xe_pccard_probeWarner Losh2005-07-131-9/+4
* Remove a duplicate assignment.Brooks Davis2005-06-141-1/+1
* Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis2005-06-101-7/+10
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-061-1/+1
* Since if_xe doesn't contain locking or run with INTR_MPSAFE, markRobert Watson2004-08-141-1/+2
* Replace convoluted and broken CRC calcuation with ether_crc32_le().Christian Weisgerber2004-06-091-41/+6
* We don't need to initialize if_output, ether_ifattach() does itMaxime Henrion2004-05-231-1/+0
* Remove improper use of if_addrhead in device drivers to checkLuigi Rizzo2004-04-151-2/+0
* Convert callers to the new bus_alloc_resource_any(9) API.Nate Lawson2004-03-171-2/+2
* Announce ethernet MAC addresss in ether_ifattach().Matthew N. Dodd2004-03-141-1/+0
* Don't use caddr_t in mchash(). Also use C99 spellings over BSD ones.David E. O'Brien2003-12-081-4/+4
* Try to create some sort of consistency in how the routings to find theDavid E. O'Brien2003-11-131-27/+28
* Disable the (currently unused) xe_reg_dump() function, until I know forScott Mitchell2003-11-061-1/+9
* Make xe_reg_dump non-static to avoid warnings (and tinerbox mail)Warner Losh2003-11-051-2/+2
* Convert XE_DEBUG define to hw.xe.debug sysctl, to set debug logging levelScott Mitchell2003-11-041-175/+91
* Replace the if_name and if_unit members of struct ifnet with new membersBrooks Davis2003-10-311-2/+1
* There is no way to enter the attach routine twice with the same softcBrooks Davis2003-10-301-16/+14
* Major update to xe driver:Scott Mitchell2003-10-141-550/+697
* Use __FBSDID().David E. O'Brien2003-08-241-1/+3
* Remove unused variable(s).Poul-Henning Kamp2003-05-311-6/+2
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-2/+2
* The Xircom hardware always delivers received packets with the FCS appended.Joerg Wunsch2003-01-291-0/+2
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-2/+2