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
nexedi
linux
Commits
9714284f
Commit
9714284f
authored
Jun 22, 2012
by
Ben Hutchings
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sfc: Stash header offsets for TSO in struct tso_state
Signed-off-by:
Ben Hutchings
<
bhutchings@solarflare.com
>
parent
53cb13c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
16 deletions
+12
-16
drivers/net/ethernet/sfc/tx.c
drivers/net/ethernet/sfc/tx.c
+12
-16
No files found.
drivers/net/ethernet/sfc/tx.c
View file @
9714284f
...
@@ -613,10 +613,6 @@ void efx_remove_tx_queue(struct efx_tx_queue *tx_queue)
...
@@ -613,10 +613,6 @@ void efx_remove_tx_queue(struct efx_tx_queue *tx_queue)
#endif
#endif
#define PTR_DIFF(p1, p2) ((u8 *)(p1) - (u8 *)(p2))
#define PTR_DIFF(p1, p2) ((u8 *)(p1) - (u8 *)(p2))
#define ETH_HDR_LEN(skb) (skb_network_header(skb) - (skb)->data)
#define SKB_TCP_OFF(skb) PTR_DIFF(tcp_hdr(skb), (skb)->data)
#define SKB_IPV4_OFF(skb) PTR_DIFF(ip_hdr(skb), (skb)->data)
#define SKB_IPV6_OFF(skb) PTR_DIFF(ipv6_hdr(skb), (skb)->data)
/**
/**
* struct tso_state - TSO state for an SKB
* struct tso_state - TSO state for an SKB
...
@@ -630,6 +626,8 @@ void efx_remove_tx_queue(struct efx_tx_queue *tx_queue)
...
@@ -630,6 +626,8 @@ void efx_remove_tx_queue(struct efx_tx_queue *tx_queue)
* @unmap_addr: DMA address of SKB fragment
* @unmap_addr: DMA address of SKB fragment
* @dma_flags: TX buffer flags for DMA mapping - %EFX_TX_BUF_MAP_SINGLE or 0
* @dma_flags: TX buffer flags for DMA mapping - %EFX_TX_BUF_MAP_SINGLE or 0
* @protocol: Network protocol (after any VLAN header)
* @protocol: Network protocol (after any VLAN header)
* @ip_off: Offset of IP header
* @tcp_off: Offset of TCP header
* @header_len: Number of bytes of header
* @header_len: Number of bytes of header
* @ip_base_len: IPv4 tot_len or IPv6 payload_len, before TCP payload
* @ip_base_len: IPv4 tot_len or IPv6 payload_len, before TCP payload
*
*
...
@@ -651,6 +649,8 @@ struct tso_state {
...
@@ -651,6 +649,8 @@ struct tso_state {
unsigned
short
dma_flags
;
unsigned
short
dma_flags
;
__be16
protocol
;
__be16
protocol
;
unsigned
int
ip_off
;
unsigned
int
tcp_off
;
unsigned
header_len
;
unsigned
header_len
;
unsigned
int
ip_base_len
;
unsigned
int
ip_base_len
;
};
};
...
@@ -825,17 +825,14 @@ static void efx_enqueue_unwind(struct efx_tx_queue *tx_queue)
...
@@ -825,17 +825,14 @@ static void efx_enqueue_unwind(struct efx_tx_queue *tx_queue)
/* Parse the SKB header and initialise state. */
/* Parse the SKB header and initialise state. */
static
void
tso_start
(
struct
tso_state
*
st
,
const
struct
sk_buff
*
skb
)
static
void
tso_start
(
struct
tso_state
*
st
,
const
struct
sk_buff
*
skb
)
{
{
/* All ethernet/IP/TCP headers combined size is TCP header size
st
->
ip_off
=
skb_network_header
(
skb
)
-
skb
->
data
;
* plus offset of TCP header relative to start of packet.
st
->
tcp_off
=
skb_transport_header
(
skb
)
-
skb
->
data
;
*/
st
->
header_len
=
st
->
tcp_off
+
(
tcp_hdr
(
skb
)
->
doff
<<
2u
);
st
->
header_len
=
((
tcp_hdr
(
skb
)
->
doff
<<
2u
)
+
PTR_DIFF
(
tcp_hdr
(
skb
),
skb
->
data
));
if
(
st
->
protocol
==
htons
(
ETH_P_IP
))
{
if
(
st
->
protocol
==
htons
(
ETH_P_IP
))
{
st
->
ip_base_len
=
st
->
header_len
-
ETH_HDR_LEN
(
skb
)
;
st
->
ip_base_len
=
st
->
header_len
-
st
->
ip_off
;
st
->
ipv4_id
=
ntohs
(
ip_hdr
(
skb
)
->
id
);
st
->
ipv4_id
=
ntohs
(
ip_hdr
(
skb
)
->
id
);
}
else
{
}
else
{
st
->
ip_base_len
=
tcp_hdr
(
skb
)
->
doff
<<
2u
;
st
->
ip_base_len
=
st
->
header_len
-
st
->
tcp_off
;
st
->
ipv4_id
=
0
;
st
->
ipv4_id
=
0
;
}
}
st
->
seqnum
=
ntohl
(
tcp_hdr
(
skb
)
->
seq
);
st
->
seqnum
=
ntohl
(
tcp_hdr
(
skb
)
->
seq
);
...
@@ -959,7 +956,7 @@ static int tso_start_new_packet(struct efx_tx_queue *tx_queue,
...
@@ -959,7 +956,7 @@ static int tso_start_new_packet(struct efx_tx_queue *tx_queue,
if
(
!
header
)
if
(
!
header
)
return
-
ENOMEM
;
return
-
ENOMEM
;
tsoh_th
=
(
struct
tcphdr
*
)(
header
+
SKB_TCP_OFF
(
skb
)
);
tsoh_th
=
(
struct
tcphdr
*
)(
header
+
st
->
tcp_off
);
/* Copy and update the headers. */
/* Copy and update the headers. */
memcpy
(
header
,
skb
->
data
,
st
->
header_len
);
memcpy
(
header
,
skb
->
data
,
st
->
header_len
);
...
@@ -980,8 +977,7 @@ static int tso_start_new_packet(struct efx_tx_queue *tx_queue,
...
@@ -980,8 +977,7 @@ static int tso_start_new_packet(struct efx_tx_queue *tx_queue,
ip_length
=
st
->
ip_base_len
+
st
->
packet_space
;
ip_length
=
st
->
ip_base_len
+
st
->
packet_space
;
if
(
st
->
protocol
==
htons
(
ETH_P_IP
))
{
if
(
st
->
protocol
==
htons
(
ETH_P_IP
))
{
struct
iphdr
*
tsoh_iph
=
struct
iphdr
*
tsoh_iph
=
(
struct
iphdr
*
)(
header
+
st
->
ip_off
);
(
struct
iphdr
*
)(
header
+
SKB_IPV4_OFF
(
skb
));
tsoh_iph
->
tot_len
=
htons
(
ip_length
);
tsoh_iph
->
tot_len
=
htons
(
ip_length
);
...
@@ -990,7 +986,7 @@ static int tso_start_new_packet(struct efx_tx_queue *tx_queue,
...
@@ -990,7 +986,7 @@ static int tso_start_new_packet(struct efx_tx_queue *tx_queue,
st
->
ipv4_id
++
;
st
->
ipv4_id
++
;
}
else
{
}
else
{
struct
ipv6hdr
*
tsoh_iph
=
struct
ipv6hdr
*
tsoh_iph
=
(
struct
ipv6hdr
*
)(
header
+
SKB_IPV6_OFF
(
skb
)
);
(
struct
ipv6hdr
*
)(
header
+
st
->
ip_off
);
tsoh_iph
->
payload_len
=
htons
(
ip_length
);
tsoh_iph
->
payload_len
=
htons
(
ip_length
);
}
}
...
...
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