summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_sk.c
AgeCommit message (Expand)Author
2024-11-05The first field of struct cfdriver is a pointer. Put NULL rather than 0 here.Miod Vallat
2024-09-04Fix some spelling.Marcus Glocker
2024-08-31net drivers may have mii children, but mii layer has no _activateTheo de Raadt
2024-06-26return type on a dedicated line when declaring functionsJonathan Gray
2024-05-24remove unneeded includes; ok miod@Jonathan Gray
2023-11-10Make ifq and ifiq interface MP safe.Alexander Bluhm
2022-03-11Constify struct cfattach.Martin Pieuchot
2022-01-09spellingJonathan Gray
2020-12-12Rename the macro MCLGETI to MCLGETL and removes the dead parameter ifp.jan
2020-07-10Change users of IFQ_SET_MAXLEN() and IFQ_IS_EMPTY() to use the "new" API.Patrick Wildt
2020-06-22use ifiq_input and use it's return value to apply backpressure to rxrs.David Gwynne
2017-06-04use htolem32 and lemtoh32 instead of htole32 and letoh32.David Gwynne
2017-06-02handle 64bit dva in the tx path as well as the rx path.David Gwynne
2017-06-01reorder ops in sk_start to avoid possibly rolling back ifq_deq.David Gwynne
2017-01-22move counting if_opackets next to counting if_obytes in if_enqueue.David Gwynne
2017-01-08Use a macro for the Tx timeout value.Visa Hankala
2016-04-13G/C IFQ_SET_READY().Martin Pieuchot
2015-11-25replace IFF_OACTIVE manipulation with mpsafe operations.David Gwynne
2015-11-24You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl.Martin Pieuchot
2015-11-24The only network driver needing <net/if_types.h> is upl(4) for IFT_OTHER.Martin Pieuchot
2015-11-20shuffle struct ifqueue so in flight mbufs are protected by a mutex.David Gwynne
2015-11-14Do not include <net/if_vlan_var.h> when it's not necessary.Martin Pieuchot
2015-10-25arp_ifinit() is no longer needed.Martin Pieuchot
2015-07-19use standardized register definition in mii.h rather than eachYojiro Uo
2015-06-24Increment if_ipackets in if_input().Martin Pieuchot
2015-04-30Convert to if_input(), tweak and ok dlg@Martin Pieuchot
2015-03-14Remove some includes include-what-you-use claims don'tJonathan Gray
2014-12-22unifdef INETTed Unangst
2014-08-20brad said i had some whitespace screwups in my previous diff. this cleansDavid Gwynne
2014-08-20replace sks jumbo allocator with MCLGETI. the system provides jumbos inDavid Gwynne
2014-07-22Fewer <netinet/in_systm.h>Martin Pieuchot
2014-07-12add a size argument to free. will be used soon, but for now default to 0.Ted Unangst
2014-04-19kill checksum offloading in sk.Henning Brauer
2013-12-28Sync activate code sequnces to if_msk.c as much as possible, in caseTheo de Raadt
2013-08-21get rid of the copy argument in m_devget that let you provide anDavid Gwynne
2013-08-07Most network drivers include netinet/in_var.h, but apparently theyAlexander Bluhm
2013-03-07Rewrite the receive filter handling code and cleanup the ioctl bits.Brad Smith
2012-11-29Remove setting an initial assumed baudrate upon driver attach which is notBrad Smith
2012-10-18Convert a number of old private copies of code which predatesTheo de Raadt
2012-02-24Correct the spelling of "transferred" and "transferring"Philip Guenthe
2011-06-22kill a few more casts that aren't helpful. ok krw miodTed Unangst
2011-04-03use nitems(); no binary change for drivers that are compiled on amd64.Jasper Lievisse Adriaanse
2010-09-20Stop doing shutdown hooks in network drivers where possible. We alreadyTheo de Raadt
2010-05-19BUS_DMA_ZERO instead of alloc, map, bzero.Owain Ainsworth
2009-10-17use sc->sk_bsize in the unmap call too; ok theoMartynas Venckus
2009-10-15Add detach support to a few more drivers, and in others do the neccessaryTheo de Raadt
2009-10-04Merge over a bunch of detach logic from msk(4) so that this driver canTheo de Raadt
2009-08-13- consistify cfdriver for the ethernet drivers (0 -> NULL)Jasper Lievisse Adriaanse
2009-07-08revert MCLGETI for sk(4) for now. commit requested by deraadt@Stuart Henderson
2009-03-30Switch sk(4) over to using MCLGETI when allocating mbufs for the RX ring.Mark Kettenis