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:
Eric Dumazet 2020-06-17 20:53:23 -07:00 committed by David S. Miller
parent 9c77b803f2
commit 185c3e5860
1 changed files with 6 additions and 6 deletions

View File

@ -7,12 +7,12 @@
#define TSO_HEADER_SIZE 256
struct tso_t {
int next_frag_idx;
void *data;
size_t size;
u16 ip_id;
bool ipv6;
u32 tcp_seq;
int next_frag_idx;
int size;
void *data;
u16 ip_id;
bool ipv6;
u32 tcp_seq;
};
int tso_count_descs(struct sk_buff *skb);