mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-15 09:03:59 +08:00
net: tso: shrink struct tso_t
size field can be an int, no need for size_t Removes a 32bit hole on 64bit kernels. And align fields for better readability. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9c77b803f2
commit
185c3e5860
@ -7,12 +7,12 @@
|
|||||||
#define TSO_HEADER_SIZE 256
|
#define TSO_HEADER_SIZE 256
|
||||||
|
|
||||||
struct tso_t {
|
struct tso_t {
|
||||||
int next_frag_idx;
|
int next_frag_idx;
|
||||||
void *data;
|
int size;
|
||||||
size_t size;
|
void *data;
|
||||||
u16 ip_id;
|
u16 ip_id;
|
||||||
bool ipv6;
|
bool ipv6;
|
||||||
u32 tcp_seq;
|
u32 tcp_seq;
|
||||||
};
|
};
|
||||||
|
|
||||||
int tso_count_descs(struct sk_buff *skb);
|
int tso_count_descs(struct sk_buff *skb);
|
||||||
|
Loading…
Reference in New Issue
Block a user