aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/vx
Commit message (Expand)AuthorAgeFilesLines
* sys/dev: Replace zero with NULL for pointers.Pedro F. Giffuni2017-02-201-2/+2
* Remove references to EISA support from the vx driver, along with EISAWarner Losh2017-02-162-198/+1
* sys/dev: minor spelling fixes.Pedro F. Giffuni2016-05-032-3/+3
* 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-9/+9
* - Provide necessary includes.Gleb Smirnoff2013-10-291-1/+3
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-262-0/+2
* Use DEVMETHOD_END macro defined in sys/bus.h instead of {0, 0} sentinel on de...Sofian Brabez2013-01-302-2/+2
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-041-4/+4
* ether_ifattach() sets if_mtu to ETHERMTU, don't bother set it againKevin Lo2012-01-071-1/+0
* Fix typos - remove duplicate "the".Rebecca Cran2011-02-211-1/+1
* Add new tunable 'net.link.ifqmaxlen' to set default send interfaceMaxim Sobolev2010-05-031-1/+1
* - Add a private timer to drive the transmit watchdog instead of usingJohn Baldwin2009-11-192-13/+22
* MFp4: Network Adapter is redundant.Warner Losh2008-08-251-4/+4
* - vx_stop() requires the driver lock to be held.Marius Strobl2008-04-241-3/+5
* Fix function prototype for device_shutdown method.Pyun YongHyeon2007-11-221-2/+4
* o break newbus api: add a new argument of type driver_filter_t toPaolo Pisati2007-02-232-3/+3
* - Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov2005-11-111-3/+3
* Fix another edge case I just noticed when committing the previous changes:John Baldwin2005-10-062-0/+6
* Rototill vx(4), add locking, and mark MPSAFE:John Baldwin2005-10-064-233/+287
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-11/+11
* Don't drop frames if interface is in promiscuous mode.Ruslan Ermilov2005-07-221-1/+2
* Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis2005-06-102-28/+36
* Remove bus_{mem,p}io.h and related code for a micro-optimization on i386Yoshihiro Takahashi2005-05-292-2/+0
* Use BUS_PROBE_DEFAULT in preference to 0. Also for vx, returnWarner Losh2005-03-011-6/+4
* Fix up assignment of negative number to char. Char's are unsigned byPeter Grehan2005-02-031-1/+1
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-065-5/+5
* ss if_vx through indent, and use ANSI function definitions, prior to addingJustin T. Gibbs2004-08-185-1018/+990
* Since if_vx doesn't contain locking or run with INTR_MPSAFE, markRobert Watson2004-08-141-1/+2
* Correctly export the size of our softc to newbus in our EISA attachement.Justin T. Gibbs2004-08-111-1/+1
* Add missing <sys/module.h> includesPoul-Henning Kamp2004-05-301-0/+1
* We don't need to initialize if_output, ether_ifattach() does itMaxime Henrion2004-05-231-1/+0
* Convert callers to the new bus_alloc_resource_any(9) API.Nate Lawson2004-03-172-9/+5
* Announce ethernet MAC addresss in ether_ifattach().Matthew N. Dodd2004-03-141-2/+0
* Replace the if_name and if_unit members of struct ifnet with new membersBrooks Davis2003-10-314-7/+9
* Start to minimize diffs between vx and ep. These latter is based on aWarner Losh2003-10-255-89/+127
* more unused item cleanupWarner Losh2003-10-231-2/+0
* BASE is no longer used, and is an appendix. Remove it.Warner Losh2003-10-231-5/+0
* Use PCIR_BAR(x) instead of PCIR_MAPS.John Baldwin2003-09-021-1/+1
* Use __FBSDID().David E. O'Brien2003-08-243-4/+9
* Prefer new location of pci include files (which have only been in theWarner Losh2003-08-221-2/+2
* Revert part of rev 1.43. We want to fail gracefully if there is no packetDag-Erling Smørgrav2003-06-081-0/+3
* Remove break after returnPoul-Henning Kamp2003-05-311-4/+0
* - Express hard dependencies on bus (pci, isa, pccard) andMatthew N. Dodd2003-04-151-1/+3
* Introduce an M_ASSERTPKTHDR() macro which performs the very common taskDag-Erling Smørgrav2003-04-081-5/+2
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-4/+4
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-4/+4
* network interface driver changes:Sam Leffler2002-11-141-12/+5
* Fix mis-indentation.Poul-Henning Kamp2002-10-021-3/+3
* Use if_printf(ifp, "blah") instead of printf("vx%d: blah", ifp->if_unit).Brooks Davis2002-10-011-2/+2