summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_sis.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Increment if_ipackets in if_input().mpi2015-06-241-2/+1
* Now that if_input() set the receiving interface pointer on mbufs for usmpi2015-04-131-3/+2
* Convert to if_input().mpi2015-03-301-9/+5
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* - Make use of m_defrag().brad2015-02-111-9/+26
* Always enable the receive filter. It was being enabled via sis_init()brad2015-01-061-4/+5
* unifdef INETtedu2014-12-221-5/+1
* Do as the datasheet recommends and disable the RX filter before adjustingbrad2014-12-171-6/+27
* Have foo_init() call foo_reset() to reset the chip to a known statebrad2014-12-081-6/+7
* rxr ioctl handling.brad2014-11-241-1/+6
* Fewer <netinet/in_systm.h>mpi2014-07-221-3/+1
* cut things that relied on mclgeti for rx ring accounting/restriction overdlg2014-07-081-9/+11
* The few network drivers that called their children's (ie. mii PHYderaadt2013-12-281-2/+1
* Add a DVACT_WAKEUP op to the *_activate() API. This is called after thederaadt2013-12-061-4/+4
* 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 media / link state handling and have itbrad2013-06-281-66/+90
* - Apply the AcceptPerfectMatch workaround for DP83815 chipsets to the 15Dbrad2013-03-171-18/+20
* Correct the delay when programming the short cable fix. It should bebrad2013-03-071-2/+2
* Allow the user to configure an MTU of up to 1518, which does not requiresthen2013-02-091-1/+2
* 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-29/+2
* kill a few more casts that aren't helpful. ok krw miodtedu2011-06-221-6/+6
* do not disable interrupts in the isr and then enable them againdlg2011-04-141-49/+34
* use nitems(); no binary change for drivers that are compiled on amd64.jasper2011-04-031-2/+2
* bus_dmamap_sync() freshly initialized Rx descriptors before flipping the bitkettenis2011-02-151-1/+6
* Add DVACT_QUIECE support. This is called before splhigh() and beforederaadt2010-08-311-1/+4
* activate function should return result of config_activate_childrenderaadt2010-08-311-4/+5
* ca_activate function for suspend/resume; tested by mlarkinderaadt2010-08-061-2/+25
* BUS_DMA_ZERO instead of alloc, map, bzero.oga2010-05-191-3/+2
* - consistify cfdriver for the ethernet drivers (0 -> NULL)jasper2009-08-131-2/+2
* A few more simple cases of shutdown hooks which only call xxstop, whenderaadt2009-08-101-16/+1
* MCLGETI() will now allocate a mbuf header if it is not provided, thusderaadt2009-08-091-9/+3
* Add big-endian platform support to sis(4). Tested to not break anything onmiod2009-07-221-36/+40
* Sync the strict alignment with vr(4). Remove the if (1) and replace it withclaudio2009-06-221-7/+6
* First sync the descriptor then check if the owner of the descriptor.claudio2009-06-181-5/+5
* Remove #if 0 code that is of no use at all. Ring overflows will actuallyclaudio2009-06-121-17/+1
* merge some individual SIS_SETBIT (done for natsemi chips only)sthen2009-06-041-14/+7
* - Rewrite ioctl handling code and receive filter handling to cleansthen2009-06-041-118/+81
* Convert sis(4) to MCLGETI() and make soekris suck much less. With this theclaudio2009-04-141-62/+77
* The original SiS chips seem to have an bug that marks VLAN tagged packetsclaudio2009-02-241-5/+9
* Don't hardcode the bus_space_tag to use, grab if from pci_attach_argsoga2008-12-041-10/+3
* Eliminate the redundant bits of code for MTU and multicast handlingbrad2008-11-281-24/+11
* don't assign ifp to ifp; llvm/clang; ok jsgcnst2008-11-101-2/+2
* 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-3/+3
* theres no need too m_adj() the mbuf by 8bytes (u_int64_t) inthib2008-07-151-3/+1
* move a common statement out of if/else;thib2008-07-101-6/+6
* Use bus_dmamap_load_mbuf() instead of bus_dmamap_load() whenthib2008-07-071-4/+4