summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_sk.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* use ifiq_input and use it's return value to apply backpressure to rxrs.dlg2020-06-221-2/+4
* use htolem32 and lemtoh32 instead of htole32 and letoh32.dlg2017-06-041-14/+16
* handle 64bit dva in the tx path as well as the rx path.dlg2017-06-021-4/+9
* reorder ops in sk_start to avoid possibly rolling back ifq_deq.dlg2017-06-011-37/+30
* move counting if_opackets next to counting if_obytes in if_enqueue.dlg2017-01-221-3/+1
* Use a macro for the Tx timeout value.visa2017-01-081-3/+3
* G/C IFQ_SET_READY().mpi2016-04-131-2/+1
* replace IFF_OACTIVE manipulation with mpsafe operations.dlg2015-11-251-5/+6
* You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl.mpi2015-11-241-2/+1
* The only network driver needing <net/if_types.h> is upl(4) for IFT_OTHER.mpi2015-11-241-2/+1
* shuffle struct ifqueue so in flight mbufs are protected by a mutex.dlg2015-11-201-3/+4
* Do not include <net/if_vlan_var.h> when it's not necessary.mpi2015-11-141-2/+1
* arp_ifinit() is no longer needed.mpi2015-10-251-4/+1
* use standardized register definition in mii.h rather than eachyuo2015-07-191-2/+3
* Increment if_ipackets in if_input().mpi2015-06-241-2/+1
* Convert to if_input(), tweak and ok dlg@mpi2015-04-301-10/+5
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* unifdef INETtedu2014-12-221-5/+1
* brad said i had some whitespace screwups in my previous diff. this cleansdlg2014-08-201-53/+53
* replace sks jumbo allocator with MCLGETI. the system provides jumbos indlg2014-08-201-239/+99
* Fewer <netinet/in_systm.h>mpi2014-07-221-5/+1
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-2/+2
* kill checksum offloading in sk.henning2014-04-191-102/+1
* Sync activate code sequnces to if_msk.c as much as possible, in casederaadt2013-12-281-31/+84
* get rid of the copy argument in m_devget that let you provide andlg2013-08-211-2/+2
* Most network drivers include netinet/in_var.h, but apparently theybluhm2013-08-071-2/+1
* Rewrite the receive filter handling code and cleanup the ioctl bits.brad2013-03-071-145/+106
* Remove setting an initial assumed baudrate upon driver attach which is notbrad2012-11-291-2/+1
* Convert a number of old private copies of code which predatesderaadt2012-10-181-31/+3
* Correct the spelling of "transferred" and "transferring"guenther2012-02-241-2/+2
* kill a few more casts that aren't helpful. ok krw miodtedu2011-06-221-4/+3
* use nitems(); no binary change for drivers that are compiled on amd64.jasper2011-04-031-2/+2
* Stop doing shutdown hooks in network drivers where possible. We alreadyderaadt2010-09-201-24/+1
* BUS_DMA_ZERO instead of alloc, map, bzero.oga2010-05-191-3/+2
* use sc->sk_bsize in the unmap call too; ok theomartynas2009-10-171-3/+2
* Add detach support to a few more drivers, and in others do the neccessaryderaadt2009-10-151-90/+92
* Merge over a bunch of detach logic from msk(4) so that this driver canderaadt2009-10-041-10/+67
* - consistify cfdriver for the ethernet drivers (0 -> NULL)jasper2009-08-131-2/+2
* revert MCLGETI for sk(4) for now. commit requested by deraadt@sthen2009-07-081-89/+228
* Switch sk(4) over to using MCLGETI when allocating mbufs for the RX ring.kettenis2009-03-301-228/+89
* Eliminate the redundant bits of code for MTU and multicast handlingbrad2008-11-281-23/+10
* Change m_devget()'s outdated and unused "offset" argument: It isnaddy2008-10-141-4/+3
* First step towards cleaning up the Ethernet driver ioctl handling.brad2008-10-021-9/+2
* Convert timeout_add() calls using multiples of hz to timeout_add_sec()blambert2008-09-101-8/+8
* Also recognize the Schneider & Koch SK-9821/SK-9843 adapters frombrad2008-05-241-1/+3
* Simplify the combination use of pci_mapreg_type()/pci_mapreg_map() asbrad2008-05-231-10/+3
* Change some spaces to tabs in the transmit functions.brad2008-03-021-5/+5
* Add splnet around mii_tick() in sk_yukon_tick().brad2008-01-171-1/+4
* separate the attach information from the status information with a colon.reyk2007-05-261-2/+2
* %z in printf(9) is not the same as %z in printf(3). Change to %luray2007-05-221-3/+3