Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
f8f2bc17
Commit
f8f2bc17
authored
Sep 18, 2002
by
Roger Luethi
Committed by
Jeff Garzik
Sep 18, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove ancient ETHER_STATS statistics from various net drivers, that haven't been
compile-enabled nor compileable in ages.
parent
45e39485
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
0 additions
and
51 deletions
+0
-51
drivers/net/8139too.c
drivers/net/8139too.c
+0
-4
drivers/net/dl2k.c
drivers/net/dl2k.c
+0
-5
drivers/net/epic100.c
drivers/net/epic100.c
+0
-6
drivers/net/fealnx.c
drivers/net/fealnx.c
+0
-12
drivers/net/pci-skeleton.c
drivers/net/pci-skeleton.c
+0
-4
drivers/net/sundance.c
drivers/net/sundance.c
+0
-5
drivers/net/tulip/winbond-840.c
drivers/net/tulip/winbond-840.c
+0
-6
drivers/net/tulip/xircom_tulip_cb.c
drivers/net/tulip/xircom_tulip_cb.c
+0
-3
drivers/net/yellowfin.c
drivers/net/yellowfin.c
+0
-6
No files found.
drivers/net/8139too.c
View file @
f8f2bc17
...
...
@@ -1746,10 +1746,6 @@ static void rtl8139_tx_interrupt (struct net_device *dev,
tp
->
stats
.
tx_carrier_errors
++
;
if
(
txstatus
&
TxOutOfWindow
)
tp
->
stats
.
tx_window_errors
++
;
#ifdef ETHER_STATS
if
((
txstatus
&
0x0f000000
)
==
0x0f000000
)
tp
->
stats
.
collisions16
++
;
#endif
}
else
{
if
(
txstatus
&
TxUnderrun
)
{
/* Add 64 to the Tx FIFO threshold. */
...
...
drivers/net/dl2k.c
View file @
f8f2bc17
...
...
@@ -809,13 +809,8 @@ tx_error (struct net_device *dev, int tx_status)
/* Let TxStartThresh stay default value */
}
/* Maximum Collisions */
#ifdef ETHER_STATS
if
(
tx_status
&
0x08
)
np
->
stats
.
collisions16
++
;
#else
if
(
tx_status
&
0x08
)
np
->
stats
.
collisions
++
;
#endif
/* Restart the Tx */
writel
(
readw
(
dev
->
base_addr
+
MACCtrl
)
|
TxEnable
,
ioaddr
+
MACCtrl
);
}
...
...
drivers/net/epic100.c
View file @
f8f2bc17
...
...
@@ -1072,13 +1072,7 @@ static void epic_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
if
(
txstatus
&
0x0008
)
ep
->
stats
.
tx_carrier_errors
++
;
if
(
txstatus
&
0x0040
)
ep
->
stats
.
tx_window_errors
++
;
if
(
txstatus
&
0x0010
)
ep
->
stats
.
tx_fifo_errors
++
;
#ifdef ETHER_STATS
if
(
txstatus
&
0x1000
)
ep
->
stats
.
collisions16
++
;
#endif
}
else
{
#ifdef ETHER_STATS
if
((
txstatus
&
0x0002
)
!=
0
)
ep
->
stats
.
tx_deferred
++
;
#endif
ep
->
stats
.
collisions
+=
(
txstatus
>>
8
)
&
15
;
ep
->
stats
.
tx_packets
++
;
ep
->
stats
.
tx_bytes
+=
ep
->
tx_skbuff
[
entry
]
->
len
;
...
...
drivers/net/fealnx.c
View file @
f8f2bc17
...
...
@@ -1493,16 +1493,7 @@ static void intr_handler(int irq, void *dev_instance, struct pt_regs *rgs)
if
((
tx_status
&
HF
)
&&
np
->
mii
.
full_duplex
==
0
)
np
->
stats
.
tx_heartbeat_errors
++
;
#ifdef ETHER_STATS
if
(
tx_status
&
EC
)
np
->
stats
.
collisions16
++
;
#endif
}
else
{
#ifdef ETHER_STATS
if
(
tx_status
&
DFR
)
np
->
stats
.
tx_deferred
++
;
#endif
np
->
stats
.
tx_bytes
+=
((
tx_control
&
PKTSMask
)
>>
PKTSShift
);
...
...
@@ -1544,9 +1535,6 @@ static void intr_handler(int irq, void *dev_instance, struct pt_regs *rgs)
np
->
stats
.
tx_errors
+=
(
data
&
0xff000000
)
>>
24
;
np
->
stats
.
tx_aborted_errors
+=
(
data
&
0xff000000
)
>>
24
;
np
->
stats
.
tx_window_errors
+=
(
data
&
0x00ff0000
)
>>
16
;
#ifdef ETHER_STATS
np
->
stats
.
collisions16
+=
(
data
&
0xff000000
)
>>
24
;
#endif
np
->
stats
.
collisions
+=
(
data
&
0x0000ffff
);
}
...
...
drivers/net/pci-skeleton.c
View file @
f8f2bc17
...
...
@@ -1411,10 +1411,6 @@ static void netdrv_tx_interrupt (struct net_device *dev,
tp
->
stats
.
tx_carrier_errors
++
;
if
(
txstatus
&
TxOutOfWindow
)
tp
->
stats
.
tx_window_errors
++
;
#ifdef ETHER_STATS
if
((
txstatus
&
0x0f000000
)
==
0x0f000000
)
tp
->
stats
.
collisions16
++
;
#endif
}
else
{
if
(
txstatus
&
TxUnderrun
)
{
/* Add 64 to the Tx FIFO threshold. */
...
...
drivers/net/sundance.c
View file @
f8f2bc17
...
...
@@ -1112,13 +1112,8 @@ static void intr_handler(int irq, void *dev_instance, struct pt_regs *rgs)
np
->
stats
.
tx_errors
++
;
if
(
tx_status
&
0x10
)
np
->
stats
.
tx_fifo_errors
++
;
#ifdef ETHER_STATS
if
(
tx_status
&
0x08
)
np
->
stats
.
collisions16
++
;
#else
if
(
tx_status
&
0x08
)
np
->
stats
.
collisions
++
;
#endif
if
(
tx_status
&
0x02
)
np
->
stats
.
tx_window_errors
++
;
/* This reset has not been verified!. */
...
...
drivers/net/tulip/winbond-840.c
View file @
f8f2bc17
...
...
@@ -1136,13 +1136,7 @@ static void netdev_tx_done(struct net_device *dev)
if
(
tx_status
&
0x0002
)
np
->
stats
.
tx_fifo_errors
++
;
if
((
tx_status
&
0x0080
)
&&
np
->
mii_if
.
full_duplex
==
0
)
np
->
stats
.
tx_heartbeat_errors
++
;
#ifdef ETHER_STATS
if
(
tx_status
&
0x0100
)
np
->
stats
.
collisions16
++
;
#endif
}
else
{
#ifdef ETHER_STATS
if
(
tx_status
&
0x0001
)
np
->
stats
.
tx_deferred
++
;
#endif
#ifndef final_version
if
(
debug
>
3
)
printk
(
KERN_DEBUG
"%s: Transmit slot %d ok, Tx status %8.8x.
\n
"
,
...
...
drivers/net/tulip/xircom_tulip_cb.c
View file @
f8f2bc17
...
...
@@ -1105,9 +1105,6 @@ static void xircom_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
tp
->
stats
.
tx_errors
++
;
if
(
status
&
Tx0ManyColl
)
{
tp
->
stats
.
tx_aborted_errors
++
;
#ifdef ETHER_STATS
tp
->
stats
.
collisions16
++
;
#endif
}
if
(
status
&
Tx0NoCarrier
)
tp
->
stats
.
tx_carrier_errors
++
;
if
(
status
&
Tx0LateColl
)
tp
->
stats
.
tx_window_errors
++
;
...
...
drivers/net/yellowfin.c
View file @
f8f2bc17
...
...
@@ -1025,17 +1025,11 @@ static void yellowfin_interrupt(int irq, void *dev_instance, struct pt_regs *reg
if
(
tx_errs
&
0x0800
)
yp
->
stats
.
tx_carrier_errors
++
;
if
(
tx_errs
&
0x2000
)
yp
->
stats
.
tx_window_errors
++
;
if
(
tx_errs
&
0x8000
)
yp
->
stats
.
tx_fifo_errors
++
;
#ifdef ETHER_STATS
if
(
tx_errs
&
0x1000
)
yp
->
stats
.
collisions16
++
;
#endif
}
else
{
#ifndef final_version
if
(
yellowfin_debug
>
4
)
printk
(
KERN_DEBUG
"%s: Normal transmit, Tx status %4.4x.
\n
"
,
dev
->
name
,
tx_errs
);
#endif
#ifdef ETHER_STATS
if
(
tx_errs
&
0x0400
)
yp
->
stats
.
tx_deferred
++
;
#endif
yp
->
stats
.
tx_bytes
+=
skb
->
len
;
yp
->
stats
.
collisions
+=
tx_errs
&
15
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment