diff options
| author | Ilpo Järvinen <[email protected]> | 2009-02-28 04:44:42 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2009-03-02 11:00:17 +0000 |
| commit | 9ce01461028d595a6f1cd724fbd7a0dd70464fe4 (patch) | |
| tree | d1cf064853fb84001202a72bc1a03e7f0b69d595 /net/ipv4/tcp_output.c | |
| parent | tcp: in sendmsg/pages open code the real goto target (diff) | |
| download | kernel-9ce01461028d595a6f1cd724fbd7a0dd70464fe4.tar.gz kernel-9ce01461028d595a6f1cd724fbd7a0dd70464fe4.zip | |
tcp: get rid of two unnecessary u16s in TCP skb flags copying
I guess these fields were one day 16-bit in the struct but
nowadays they're just using 8 bits anyway.
This is just a precaution, didn't result any change in my
case but who knows what all those varying gcc versions &
options do. I've been told that 16-bit is not so nice with
some cpus.
Signed-off-by: Ilpo Järvinen <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_output.c')
| -rw-r--r-- | net/ipv4/tcp_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index 1555bb73b638..920c57b90ded 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c @@ -767,7 +767,7 @@ int tcp_fragment(struct sock *sk, struct sk_buff *skb, u32 len, struct sk_buff *buff; int nsize, old_factor; int nlen; - u16 flags; + u8 flags; BUG_ON(len > skb->len); @@ -1282,7 +1282,7 @@ static int tso_fragment(struct sock *sk, struct sk_buff *skb, unsigned int len, { struct sk_buff *buff; int nlen = skb->len - len; - u16 flags; + u8 flags; /* All of a TSO frame must be composed of paged data. */ if (skb->len != skb->data_len) |
