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

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



>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-ia64" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux Kernel]     [Sparc Linux]     [DCCP]     [Linux ARM]     [Yosemite News]     [Linux SCSI]     [Linux x86_64]     [Linux for Ham Radio]

  Powered by Linux