index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sys
/
dev
/
pci
/
if_rge.c
Age
Commit message (
Expand
)
Author
2024-08-31
net drivers may have mii children, but mii layer has no _activate
Theo de Raadt
2024-08-21
offset rx buffers by ETHER_ALIGN so ip payloads are properly aligned.
David Gwynne
2024-08-21
use 2k clusters on the rx ring instead of 9k clusters.
David Gwynne
2024-08-21
support building a single packet out of multiple rx descriptors.
David Gwynne
2024-08-21
be more careful about bus_dmamap_syncs for rx ring descriptors.
David Gwynne
2024-08-20
rework rge tx start and completion to better bus_dmamap_sync tx descriptors
David Gwynne
2024-08-12
try harder to leave a gap on the tx ring.
David Gwynne
2024-08-10
Fix TX descriptors DMA syncs. So far only a single TX desc was synced, which
Patrick Wildt
2024-06-30
Add support for the Realtek RTL8126 chip to the rge(4) driver.
Kevin Lo
2024-05-24
remove unneeded includes; ok miod@
Jonathan Gray
2024-05-20
Map MSI-X in addition to MSI and INTx on rge(4).
Kevin Lo
2024-04-13
correct indentation
Jonathan Gray
2023-12-22
Update microcode, initialization and reset behavior.
Kevin Lo
2023-11-10
Make ifq and ifiq interface MP safe.
Alexander Bluhm
2022-12-21
Update the Rx descriptor based on the vendor driver for Linux.
Kevin Lo
2022-11-20
port the kstat code from re(4) to rge(4)
David Gwynne
2022-04-21
Repair hw vlan tagging. Previously swapped byte RGE_TDEXTSTS_VTAG, this
Kevin Lo
2022-03-12
Constify struct cfattach, not struct cfdriver
Jonathan Matthew
2022-03-11
Constify struct cfattach.
Martin Pieuchot
2021-11-23
Fix mbuf leaks after reception error in rge_rxeof().
Kevin Lo
2021-08-16
Remove redundant SIOCSIFMTU ioctl handler already handlded by ether_ioctl().
Kevin Lo
2021-07-12
fix "evaluation order violation" flagged by coverity
Daniel Dickman
2021-03-30
Move tx/rx descriptors into their own structs.
Kevin Lo
2021-02-11
Add missing break in switch statement of rge_activate().
Stefan Sperling
2020-12-24
ramdisks do not contain WOL
Theo de Raadt
2020-12-24
Add Wake on LAN support to rge(4).
Kevin Lo
2020-12-12
Rename the macro MCLGETI to MCLGETL and removes the dead parameter ifp.
jan
2020-10-31
Update the RTL8125B microcode and use ifiq_input and its return value to
Kevin Lo
2020-10-12
Set the maximum frame size to RGE_JUMBO_FRAMELEN.
Kevin Lo
2020-08-07
- Do better work in ifmedia_upd
Kevin Lo
2020-07-22
Add support for newer RTL8125 chipset (RTL8125B).
Kevin Lo
2020-07-10
Change users of IFQ_SET_MAXLEN() and IFQ_IS_EMPTY() to use the "new" API.
Patrick Wildt
2020-03-27
Use correct bit mask to promptly exit rge_set_phy_power() and
Kenneth R Westerback
2020-01-02
Fix bus_dmamap_sync(9) calls. While here fix a typo in a comment.
Kevin Lo
2019-11-18
Introduce rge(4), a new driver for Realtek 8125 PCI Express 2.5Gb Ethernet
Kevin Lo