[PATCH 2/8] base-small: shrink major_names hash

From: Matt Mackall
Date: Mon Jan 31 2005 - 02:32:24 EST


CONFIG_BASE_SMALL degrade genhd major names hash to linked list

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

Index: tq/drivers/block/genhd.c
===================================================================
--- tq.orig/drivers/block/genhd.c 2005-01-26 13:06:16.000000000 -0800
+++ tq/drivers/block/genhd.c 2005-01-26 13:08:23.000000000 -0800
@@ -15,7 +15,8 @@
#include <linux/kmod.h>
#include <linux/kobj_map.h>

-#define MAX_PROBE_HASH 255 /* random */
+/* degrade to linked list for small systems */
+#define MAX_PROBE_HASH (CONFIG_BASE_SMALL ? 1 : 255)

static struct subsystem block_subsys;

-
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/