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
373a5e02
Commit
373a5e02
authored
Aug 27, 2008
by
Jeff Garzik
Committed by
Jeff Garzik
Aug 27, 2008
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-2.6.27' of
git://git.marvell.com/mv643xx_eth
into upstream-fixes
parents
c2d42545
c4560318
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
15 deletions
+20
-15
drivers/net/mv643xx_eth.c
drivers/net/mv643xx_eth.c
+20
-15
No files found.
drivers/net/mv643xx_eth.c
View file @
373a5e02
...
@@ -55,7 +55,7 @@
...
@@ -55,7 +55,7 @@
#include <asm/system.h>
#include <asm/system.h>
static
char
mv643xx_eth_driver_name
[]
=
"mv643xx_eth"
;
static
char
mv643xx_eth_driver_name
[]
=
"mv643xx_eth"
;
static
char
mv643xx_eth_driver_version
[]
=
"1.
2
"
;
static
char
mv643xx_eth_driver_version
[]
=
"1.
3
"
;
#define MV643XX_ETH_CHECKSUM_OFFLOAD_TX
#define MV643XX_ETH_CHECKSUM_OFFLOAD_TX
#define MV643XX_ETH_NAPI
#define MV643XX_ETH_NAPI
...
@@ -474,11 +474,19 @@ static void rxq_refill(struct rx_queue *rxq)
...
@@ -474,11 +474,19 @@ static void rxq_refill(struct rx_queue *rxq)
/*
/*
* Reserve 2+14 bytes for an ethernet header (the
* Reserve 2+14 bytes for an ethernet header (the
* hardware automatically prepends 2 bytes of dummy
* hardware automatically prepends 2 bytes of dummy
* data to each received packet),
4 bytes for a VLAN
* data to each received packet),
16 bytes for up to
*
header, and 4 bytes for the trailing FCS -- 24
*
four VLAN tags, and 4 bytes for the trailing FCS
* bytes total.
*
-- 36
bytes total.
*/
*/
skb_size
=
mp
->
dev
->
mtu
+
24
;
skb_size
=
mp
->
dev
->
mtu
+
36
;
/*
* Make sure that the skb size is a multiple of 8
* bytes, as the lower three bits of the receive
* descriptor's buffer size field are ignored by
* the hardware.
*/
skb_size
=
(
skb_size
+
7
)
&
~
7
;
skb
=
dev_alloc_skb
(
skb_size
+
dma_get_cache_alignment
()
-
1
);
skb
=
dev_alloc_skb
(
skb_size
+
dma_get_cache_alignment
()
-
1
);
if
(
skb
==
NULL
)
if
(
skb
==
NULL
)
...
@@ -509,10 +517,8 @@ static void rxq_refill(struct rx_queue *rxq)
...
@@ -509,10 +517,8 @@ static void rxq_refill(struct rx_queue *rxq)
skb_reserve
(
skb
,
2
);
skb_reserve
(
skb
,
2
);
}
}
if
(
rxq
->
rx_desc_count
!=
rxq
->
rx_ring_size
)
{
if
(
rxq
->
rx_desc_count
!=
rxq
->
rx_ring_size
)
rxq
->
rx_oom
.
expires
=
jiffies
+
(
HZ
/
10
);
mod_timer
(
&
rxq
->
rx_oom
,
jiffies
+
(
HZ
/
10
));
add_timer
(
&
rxq
->
rx_oom
);
}
spin_unlock_irqrestore
(
&
mp
->
lock
,
flags
);
spin_unlock_irqrestore
(
&
mp
->
lock
,
flags
);
}
}
...
@@ -529,7 +535,7 @@ static int rxq_process(struct rx_queue *rxq, int budget)
...
@@ -529,7 +535,7 @@ static int rxq_process(struct rx_queue *rxq, int budget)
int
rx
;
int
rx
;
rx
=
0
;
rx
=
0
;
while
(
rx
<
budget
)
{
while
(
rx
<
budget
&&
rxq
->
rx_desc_count
)
{
struct
rx_desc
*
rx_desc
;
struct
rx_desc
*
rx_desc
;
unsigned
int
cmd_sts
;
unsigned
int
cmd_sts
;
struct
sk_buff
*
skb
;
struct
sk_buff
*
skb
;
...
@@ -554,7 +560,7 @@ static int rxq_process(struct rx_queue *rxq, int budget)
...
@@ -554,7 +560,7 @@ static int rxq_process(struct rx_queue *rxq, int budget)
spin_unlock_irqrestore
(
&
mp
->
lock
,
flags
);
spin_unlock_irqrestore
(
&
mp
->
lock
,
flags
);
dma_unmap_single
(
NULL
,
rx_desc
->
buf_ptr
+
2
,
dma_unmap_single
(
NULL
,
rx_desc
->
buf_ptr
+
2
,
mp
->
dev
->
mtu
+
24
,
DMA_FROM_DEVICE
);
rx_desc
->
buf_size
,
DMA_FROM_DEVICE
);
rxq
->
rx_desc_count
--
;
rxq
->
rx_desc_count
--
;
rx
++
;
rx
++
;
...
@@ -636,9 +642,9 @@ static int mv643xx_eth_poll(struct napi_struct *napi, int budget)
...
@@ -636,9 +642,9 @@ static int mv643xx_eth_poll(struct napi_struct *napi, int budget)
txq_reclaim
(
mp
->
txq
+
i
,
0
);
txq_reclaim
(
mp
->
txq
+
i
,
0
);
if
(
netif_carrier_ok
(
mp
->
dev
))
{
if
(
netif_carrier_ok
(
mp
->
dev
))
{
spin_lock
(
&
mp
->
lock
);
spin_lock
_irq
(
&
mp
->
lock
);
__txq_maybe_wake
(
mp
->
txq
+
mp
->
txq_primary
);
__txq_maybe_wake
(
mp
->
txq
+
mp
->
txq_primary
);
spin_unlock
(
&
mp
->
lock
);
spin_unlock
_irq
(
&
mp
->
lock
);
}
}
}
}
#endif
#endif
...
@@ -650,8 +656,6 @@ static int mv643xx_eth_poll(struct napi_struct *napi, int budget)
...
@@ -650,8 +656,6 @@ static int mv643xx_eth_poll(struct napi_struct *napi, int budget)
if
(
rx
<
budget
)
{
if
(
rx
<
budget
)
{
netif_rx_complete
(
mp
->
dev
,
napi
);
netif_rx_complete
(
mp
->
dev
,
napi
);
wrl
(
mp
,
INT_CAUSE
(
mp
->
port_num
),
0
);
wrl
(
mp
,
INT_CAUSE_EXT
(
mp
->
port_num
),
0
);
wrl
(
mp
,
INT_MASK
(
mp
->
port_num
),
INT_TX_END
|
INT_RX
|
INT_EXT
);
wrl
(
mp
,
INT_MASK
(
mp
->
port_num
),
INT_TX_END
|
INT_RX
|
INT_EXT
);
}
}
...
@@ -1796,6 +1800,7 @@ static irqreturn_t mv643xx_eth_irq(int irq, void *dev_id)
...
@@ -1796,6 +1800,7 @@ static irqreturn_t mv643xx_eth_irq(int irq, void *dev_id)
*/
*/
#ifdef MV643XX_ETH_NAPI
#ifdef MV643XX_ETH_NAPI
if
(
int_cause
&
INT_RX
)
{
if
(
int_cause
&
INT_RX
)
{
wrl
(
mp
,
INT_CAUSE
(
mp
->
port_num
),
~
(
int_cause
&
INT_RX
));
wrl
(
mp
,
INT_MASK
(
mp
->
port_num
),
0x00000000
);
wrl
(
mp
,
INT_MASK
(
mp
->
port_num
),
0x00000000
);
rdl
(
mp
,
INT_MASK
(
mp
->
port_num
));
rdl
(
mp
,
INT_MASK
(
mp
->
port_num
));
...
...
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