* [PATCH] ehea: Access iph->tot_len with correct endianness
@ 2008-07-01 17:20 Roland Dreier
2008-07-02 14:45 ` Thomas Klein
2008-07-04 12:15 ` Jeff Garzik
0 siblings, 2 replies; 3+ messages in thread
From: Roland Dreier @ 2008-07-01 17:20 UTC (permalink / raw)
To: jeff; +Cc: netdev, themann
iph->tot_len is stored in network byte order, so access it using
ntohs(). This doesn't have any real world impact on ehea, since ehea
only exists for big-endian platfroms (at the moment at least) but fixing
this gets rid of a sparse warning and avoids having a bad example in the
tree.
Signed-off-by: Roland Dreier <rolandd@cisco.com>
---
drivers/net/ehea/ehea_main.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/ehea/ehea_main.c b/drivers/net/ehea/ehea_main.c
index 075fd54..451b7e6 100644
--- a/drivers/net/ehea/ehea_main.c
+++ b/drivers/net/ehea/ehea_main.c
@@ -616,7 +616,7 @@ static int get_skb_hdr(struct sk_buff *skb, void **iphdr,
*tcph = tcp_hdr(skb);
/* check if ip header and tcp header are complete */
- if (iph->tot_len < ip_len + tcp_hdrlen(skb))
+ if (ntohs(iph->tot_len) < ip_len + tcp_hdrlen(skb))
return -1;
*hdr_flags = LRO_IPV4 | LRO_TCP;
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ehea: Access iph->tot_len with correct endianness
2008-07-01 17:20 [PATCH] ehea: Access iph->tot_len with correct endianness Roland Dreier
@ 2008-07-02 14:45 ` Thomas Klein
2008-07-04 12:15 ` Jeff Garzik
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Klein @ 2008-07-02 14:45 UTC (permalink / raw)
To: Roland Dreier; +Cc: jeff, netdev, themann
Roland Dreier wrote:
> iph->tot_len is stored in network byte order, so access it using
> ntohs(). This doesn't have any real world impact on ehea, since ehea
> only exists for big-endian platfroms (at the moment at least) but fixing
> this gets rid of a sparse warning and avoids having a bad example in the
> tree.
>
> Signed-off-by: Roland Dreier <rolandd@cisco.com>
> ---
> drivers/net/ehea/ehea_main.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/net/ehea/ehea_main.c b/drivers/net/ehea/ehea_main.c
> index 075fd54..451b7e6 100644
> --- a/drivers/net/ehea/ehea_main.c
> +++ b/drivers/net/ehea/ehea_main.c
> @@ -616,7 +616,7 @@ static int get_skb_hdr(struct sk_buff *skb, void **iphdr,
> *tcph = tcp_hdr(skb);
>
> /* check if ip header and tcp header are complete */
> - if (iph->tot_len < ip_len + tcp_hdrlen(skb))
> + if (ntohs(iph->tot_len) < ip_len + tcp_hdrlen(skb))
> return -1;
>
> *hdr_flags = LRO_IPV4 | LRO_TCP;
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Correct. Thanks Roland!
Acked-by: Thomas Klein <tklein@de.ibm.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ehea: Access iph->tot_len with correct endianness
2008-07-01 17:20 [PATCH] ehea: Access iph->tot_len with correct endianness Roland Dreier
2008-07-02 14:45 ` Thomas Klein
@ 2008-07-04 12:15 ` Jeff Garzik
1 sibling, 0 replies; 3+ messages in thread
From: Jeff Garzik @ 2008-07-04 12:15 UTC (permalink / raw)
To: Roland Dreier; +Cc: netdev, themann
Roland Dreier wrote:
> iph->tot_len is stored in network byte order, so access it using
> ntohs(). This doesn't have any real world impact on ehea, since ehea
> only exists for big-endian platfroms (at the moment at least) but fixing
> this gets rid of a sparse warning and avoids having a bad example in the
> tree.
>
> Signed-off-by: Roland Dreier <rolandd@cisco.com>
> ---
> drivers/net/ehea/ehea_main.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
applied this and pasemi_mac patch to 2.6.26.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-07-04 12:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-01 17:20 [PATCH] ehea: Access iph->tot_len with correct endianness Roland Dreier
2008-07-02 14:45 ` Thomas Klein
2008-07-04 12:15 ` Jeff Garzik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).