[PATCH 7/8] base-small: shrink timer hashes

From: Matt Mackall
Date: Mon Jan 31 2005 - 03:19:29 EST


CONFIG_BASE_SMALL reduce timer list hashes

Signed-off-by: Matt Mackall <mpm@xxxxxxxxxxx>

Index: mm2/kernel/timer.c
===================================================================
--- mm2.orig/kernel/timer.c 2005-01-30 21:26:28.000000000 -0800
+++ mm2/kernel/timer.c 2005-01-30 21:51:16.000000000 -0800
@@ -51,8 +51,9 @@
/*
* per-CPU timer vector definitions:
*/
-#define TVN_BITS 6
-#define TVR_BITS 8
+
+#define TVN_BITS (CONFIG_BASE_SMALL ? 4 : 6)
+#define TVR_BITS (CONFIG_BASE_SMALL ? 6 : 8)
#define TVN_SIZE (1 << TVN_BITS)
#define TVR_SIZE (1 << TVR_BITS)
#define TVN_MASK (TVN_SIZE - 1)
-
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/