]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] initramfs: move inode hash table to __initdata
authorZdenek Pavlas <pavlas@nextra.cz>
Wed, 2 Feb 2005 00:49:53 +0000 (16:49 -0800)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Wed, 2 Feb 2005 00:49:53 +0000 (16:49 -0800)
No need to waste 128B of kmem.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
init/initramfs.c

index 20b12cae0903b1978fd22a5657d27cc5f3224ad0..02c5ce64990d4abdd162eeee1e9a8410156d41bd 100644 (file)
@@ -26,7 +26,7 @@ static void __init free(void *where)
 
 /* link hash */
 
-static struct hash {
+static __initdata struct hash {
        int ino, minor, major;
        struct hash *next;
        char *name;