index
:
FreeBSD-src
RELENG_2_2
RELENG_2_3
RELENG_2_3_0
RELENG_2_3_1
RELENG_2_3_2
RELENG_2_3_3
RELENG_2_3_4
RELENG_2_4
RELENG_2_4_4
RELENG_2_4_OLD
devel
devel-11
releng/10.1
releng/10.3
releng/11.0
releng/11.1
stable/10
stable/11
Raptor Engineering's fork of pfsense FreeBSD src with pfSense changes
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
sys
/
dev
/
vge
Commit message (
Expand
)
Author
Age
Files
Lines
*
Mechanically substitute flags from historic mbuf allocator with
glebius
2012-12-04
1
-4
/
+4
*
Remove unused variable mii
kevlo
2012-02-11
1
-2
/
+0
*
- There's no need to overwrite the default device method with the default
marius
2011-11-22
1
-5
/
+1
*
Announce flow control capability to underlying PHY driver.
yongari
2011-11-22
1
-4
/
+11
*
Rework link establishment and link state detection logic.
yongari
2011-11-22
1
-18
/
+44
*
Always start MII auto polling before accessing any MII registers.
yongari
2011-11-22
1
-0
/
+2
*
Close a race where SIOCGIFMEDIA ioctl get inconsistent link status.
yongari
2011-10-17
1
-1
/
+1
*
vge(4) hardwares poll media status and generates an interrupt
yongari
2011-09-07
2
-7
/
+13
*
Datasheet says vge(4) controllers support DAC but it seems that's
yongari
2011-05-20
1
-2
/
+17
*
Do a sweep of the tree replacing calls to pci_find_extcap() with calls to
jhb
2011-03-23
1
-2
/
+2
*
Convert the PHY drivers to honor the mii_flags passed down and convert
marius
2010-10-15
1
-10
/
+5
*
Remove wrong assertion.
yongari
2009-12-25
1
-2
/
+0
*
Disable jumbo frame support for PCIe VT6130/VT6132 controllers.
yongari
2009-12-20
2
-3
/
+13
*
VT6130 datasheet was wrong. If VT6130 receive a jumbo frame the
yongari
2009-12-20
1
-1
/
+1
*
Correct fragment bit definition in comments.
yongari
2009-12-20
1
-2
/
+2
*
Swap VGE_TXQTIMER and VGE_RXQTIMER register definition. Pending
yongari
2009-12-19
1
-2
/
+2
*
Add rudimentary WOL support. While I'm here remove enabling
yongari
2009-12-18
3
-17
/
+227
*
Remove unused member variable of softc.
yongari
2009-12-17
1
-1
/
+0
*
Actually clear interrupts. Writing 0 has no effect.
yongari
2009-12-17
1
-1
/
+1
*
Implement interrupt moderation scheme supported by VT61xx
yongari
2009-12-17
3
-80
/
+103
*
Remove unused VGE_ETHER_ALIGN definition.
yongari
2009-12-17
1
-6
/
+0
*
Add "Velocity" to probe message which will make it clearer which
yongari
2009-12-16
1
-1
/
+1
*
Add new flag VGE_FLAG_SUSPENDED to mark suspended state and
yongari
2009-12-16
2
-11
/
+6
*
Add hardware MAC statistics support. This statistics could be
yongari
2009-12-16
3
-3
/
+322
*
Rewrite RX filter setup and simplify code.
yongari
2009-12-16
1
-57
/
+44
*
All vge(4) controllers support RX/TX checksum offloading for VLAN
yongari
2009-12-16
1
-6
/
+33
*
Tell upper layer vge(4) supports long frames. This should be done
yongari
2009-12-14
1
-1
/
+3
*
Don't report current link status if interface is not UP.
yongari
2009-12-14
1
-0
/
+4
*
Report media change result to caller instead of returning success
yongari
2009-12-14
1
-2
/
+3
*
Whenever link state change interrupt is raised, vge_tick() is
yongari
2009-12-14
1
-4
/
+4
*
Sort function prototyes.
yongari
2009-12-14
1
-48
/
+44
*
We don't have to reload EEPROM in vge_reset(). Because vge_reset()
yongari
2009-12-14
1
-17
/
+17
*
Increase output queue size from 64 to 255.
yongari
2009-12-14
2
-4
/
+2
*
Add MSI support for VT613x controllers.
yongari
2009-12-14
2
-5
/
+25
*
Save PHY address by reading VGE_MIICFG register. For PCIe
yongari
2009-12-14
2
-4
/
+22
*
Introduce vge_flags member in softc. The vge_flags member will
yongari
2009-12-14
2
-7
/
+7
*
style(9).
yongari
2009-12-14
1
-105
/
+105
*
s/u_intXX_t/uintXX_t/g
yongari
2009-12-14
2
-10
/
+10
*
Remove unnecessary return statement.
yongari
2009-12-14
1
-22
/
+0
*
Use ANSI function definations.
yongari
2009-12-14
1
-95
/
+38
*
Clear VGE_TXDESC_Q bit for transmitted frames. The VGE_TXDESC_Q bit
yongari
2009-12-14
1
-1
/
+4
*
Fix typo in register definition.
yongari
2009-12-14
1
-4
/
+4
*
Use PCIR_BAR instead of hard-coded value.
yongari
2009-12-14
1
-5
/
+2
*
Overhaul bus_dma(9) usage and fix various things.
yongari
2009-12-14
3
-697
/
+845
*
Prefer bus_alloc_resource_any(9) to bus_alloc_resource(9).
yongari
2009-12-14
1
-4
/
+4
*
Fix spelling in comment.
yongari
2009-12-14
1
-3
/
+3
*
Prefer device_printf(9) to printf(9).
yongari
2009-12-14
1
-5
/
+4
*
Remove register keyword.
yongari
2009-12-14
1
-3
/
+3
*
Remove driver lock assertion in MII register access. This change
yongari
2009-12-12
1
-2
/
+0
*
Several fixes to this driver:
jhb
2009-11-19
2
-81
/
+81
[next]