[PATCH] arch: ia64: kernel: palinfo.c: Optimization of the Code

From: Rickard Strandqvist
Date: Sun Jun 01 2014 - 17:42:56 EST


>From what I know, AND is faster then modulo.
Not sure if this is worth changing though.

Signed-off-by: Rickard Strandqvist <rickard_strandqvist@xxxxxxxxxxxxxxxxxx>
---
arch/ia64/kernel/palinfo.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/ia64/kernel/palinfo.c b/arch/ia64/kernel/palinfo.c
index c39c3cd..7915b02 100644
--- a/arch/ia64/kernel/palinfo.c
+++ b/arch/ia64/kernel/palinfo.c
@@ -156,7 +156,8 @@ static void bitregister_process(struct seq_file *m, u64 *reg_info, int max)

for(; i < max; i++ ) {

- if (i != 0 && (i%64) == 0) value = *++reg_info;
+ if (i != 0 && (i&63) == 0)
+ value = *++reg_info;

if ((value & 0x1) == 0 && skip == 0) {
if (begin <= i - 2)
--
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/