Re: [PATCH] net: em_cmp.c use unaligned access helpers

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Thomas Graf <tgraf@...>
Cc: David Miller <davem@...>, <netdev@...>
Date: Friday, July 4, 2008 - 10:10 pm

On Mon, 2008-06-30 at 01:26 +0200, Thomas Graf wrote:

Thomas, maybe I'm just being slow, put if it's always a be-value, why
not the following:

From: Harvey Harrison <harvey.harrison@gmail.com>
Subject: [PATCH] net: em_cmp.c use unaligned access helper

ptr pointers to a big endian value, instead of constructing a be
value and conditionally byteswapping on little-endian arches, use
the unaligned to access helpers return a cpu-endian value.

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
---
 net/sched/em_cmp.c |   20 +++-----------------
 1 files changed, 3 insertions(+), 17 deletions(-)

diff --git a/net/sched/em_cmp.c b/net/sched/em_cmp.c
index cc49c93..6e64af1 100644
--- a/net/sched/em_cmp.c
+++ b/net/sched/em_cmp.c
@@ -14,13 +14,9 @@
 #include <linux/kernel.h>
 #include <linux/skbuff.h>
 #include <linux/tc_ematch/tc_em_cmp.h>
+#include <asm/unaligned.h>
 #include <net/pkt_cls.h>
 
-static inline int cmp_needs_transformation(struct tcf_em_cmp *cmp)
-{
-	return unlikely(cmp->flags & TCF_EM_CMP_TRANS);
-}
-
 static int em_cmp_match(struct sk_buff *skb, struct tcf_ematch *em,
 			struct tcf_pkt_info *info)
 {
@@ -37,23 +33,13 @@ 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);
-
-			if (cmp_needs_transformation(cmp))
-				val = be16_to_cpu(val);
+			val = get_unaligned_be16(ptr);
 			break;
 
 		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);
-
-			if (cmp_needs_transformation(cmp))
-				val = be32_to_cpu(val);
+			val = get_unaligned_be32(ptr);
 			break;
 
 		default:
-- 
1.5.6.1.322.ge904b



--
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
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] net: em_cmp.c use unaligned access helpers, Harvey Harrison, (Wed Jun 25, 5:14 pm)
Re: [PATCH] net: em_cmp.c use unaligned access helpers, David Miller, (Fri Jun 27, 11:16 pm)
Re: [PATCH] net: em_cmp.c use unaligned access helpers, Thomas Graf, (Sun Jun 29, 5:54 am)
Re: [PATCH] net: em_cmp.c use unaligned access helpers, Harvey Harrison, (Sun Jun 29, 2:01 pm)
Re: [PATCH] net: em_cmp.c use unaligned access helpers, Thomas Graf, (Sun Jun 29, 7:26 pm)
Re: [PATCH] net: em_cmp.c use unaligned access helpers, Harvey Harrison, (Fri Jul 4, 10:10 pm)
Re: [PATCH] net: em_cmp.c use unaligned access helpers, Thomas Graf, (Thu Jul 10, 7:13 am)
Re: [PATCH] net: em_cmp.c use unaligned access helpers, Thomas Graf, (Sun Jun 29, 5:55 am)
[PATCH] net: em_cmp.c use unaligned access helpers, Harvey Harrison, (Sun Jun 29, 7:20 pm)