summaryrefslogtreecommitdiffstats
path: root/include/linux/xfrm.h
diff options
context:
space:
mode:
authorEric Dumazet2008-01-13 06:30:23 +0100
committerDavid S. Miller2008-01-29 00:02:00 +0100
commitba749ae98d5aa9d2ce9a7facde0deed454f92230 (patch)
tree2f4752db0bf40bb590db57435f0a609fa5f8090b /include/linux/xfrm.h
parent[PKT_SCHED] HTB: htb_classid is dead static inline (diff)
downloadkernel-qcow2-linux-ba749ae98d5aa9d2ce9a7facde0deed454f92230.tar.gz
kernel-qcow2-linux-ba749ae98d5aa9d2ce9a7facde0deed454f92230.tar.xz
kernel-qcow2-linux-ba749ae98d5aa9d2ce9a7facde0deed454f92230.zip
[XFRM]: alg_key_len should be unsigned to avoid integer divides
alg_key_len is currently defined as 'signed int'. This unfortunatly leads to integer divides in several paths. Converting it to unsigned is safe and saves 208 bytes of text on i386. Signed-off-by: Eric Dumazet <dada1@cosmosbay.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/xfrm.h')
-rw-r--r--include/linux/xfrm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/xfrm.h b/include/linux/xfrm.h
index 1131eabfaa2a..f8507eed0b79 100644
--- a/include/linux/xfrm.h
+++ b/include/linux/xfrm.h
@@ -92,7 +92,7 @@ struct xfrm_replay_state
struct xfrm_algo {
char alg_name[64];
- int alg_key_len; /* in bits */
+ unsigned int alg_key_len; /* in bits */
char alg_key[0];
};