From: David Miller <davem@davemloft.net>
To: harvey.harrison@gmail.com
Cc: netdev@vger.kernel.org, tgraf@suug.ch
Subject: Re: [PATCH] net: em_cmp.c use unaligned access helpers
Date: Fri, 27 Jun 2008 20:16:49 -0700 (PDT) [thread overview]
Message-ID: <20080627.201649.95998057.davem@davemloft.net> (raw)
In-Reply-To: <1214428440.6908.1.camel@brick>
From: Harvey Harrison <harvey.harrison@gmail.com>
Date: Wed, 25 Jun 2008 14:14:00 -0700
> Both locations are loading a big-endian value in cpu-endianness. The
> be32/be16_to_cpu immediately afterwards seems suspect.
>
> Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Smells like a bug, Thomas can you take a close look at this?
> ---
> net/sched/em_cmp.c | 11 +++--------
> 1 files changed, 3 insertions(+), 8 deletions(-)
>
> diff --git a/net/sched/em_cmp.c b/net/sched/em_cmp.c
> index cc49c93..56f1eae 100644
> --- a/net/sched/em_cmp.c
> +++ b/net/sched/em_cmp.c
> @@ -15,6 +15,7 @@
> #include <linux/skbuff.h>
> #include <linux/tc_ematch/tc_em_cmp.h>
> #include <net/pkt_cls.h>
> +#include <asm/unaligned.h>
>
> static inline int cmp_needs_transformation(struct tcf_em_cmp *cmp)
> {
> @@ -37,9 +38,7 @@ static int em_cmp_match(struct sk_buff *skb, struct tcf_ematch *em,
> break;
>
> case TCF_EM_ALIGN_U16:
> - val = *ptr << 8;
> - val |= *(ptr+1);
> -
> + val = get_unaligned_be16(ptr);
> if (cmp_needs_transformation(cmp))
> val = be16_to_cpu(val);
> break;
> @@ -47,11 +46,7 @@ static int em_cmp_match(struct sk_buff *skb, struct tcf_ematch *em,
> case TCF_EM_ALIGN_U32:
> /* Worth checking boundries? The branching seems
> * to get worse. Visit again. */
> - val = *ptr << 24;
> - val |= *(ptr+1) << 16;
> - val |= *(ptr+2) << 8;
> - val |= *(ptr+3);
> -
> + val = get_unaligned_be32(ptr);
> if (cmp_needs_transformation(cmp))
> val = be32_to_cpu(val);
> break;
> --
> 1.5.6.290.gc4e15
>
>
>
> --
> 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
next prev parent reply other threads:[~2008-06-28 3:16 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-25 21:14 [PATCH] net: em_cmp.c use unaligned access helpers Harvey Harrison
2008-06-28 3:16 ` David Miller [this message]
2008-06-29 9:54 ` Thomas Graf
2008-06-29 9:55 ` Thomas Graf
2008-06-29 23:20 ` Harvey Harrison
2008-06-29 18:01 ` Harvey Harrison
2008-06-29 23:26 ` Thomas Graf
2008-07-05 2:10 ` Harvey Harrison
2008-07-10 11:13 ` Thomas Graf
-- strict thread matches above, loose matches on Subject: below --
2008-09-18 0:00 Harvey Harrison
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080627.201649.95998057.davem@davemloft.net \
--to=davem@davemloft.net \
--cc=harvey.harrison@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=tgraf@suug.ch \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).