]> git.pld-linux.org Git - packages/kernel.git/blame_incremental - kernel-inittmpfs.patch
- fix Oppses related to USB/SAS hot unplugs
[packages/kernel.git] / kernel-inittmpfs.patch
... / ...
CommitLineData
1diff -ruw linux-2.6.30.orig/fs/Kconfig linux-2.6.30/fs/Kconfig
2--- linux-2.6.30.orig/fs/Kconfig 2009-02-12 17:51:15.000000000 +0000
3+++ linux-2.6.30/fs/Kconfig 2009-02-13 12:01:55.000000000 +0000
4@@ -724,6 +724,25 @@
5
6 If you don't know what Access Control Lists are, say N.
7
8+config TMPFS_ROOT
9+ bool "Use tmpfs instead of ramfs for initramfs"
10+ depends on TMPFS && SHMEM
11+ default y
12+ help
13+ This replaces the ramfs used for unpacking the cpio images
14+ with tmpfs.
15+
16+config RAMFS
17+ bool "Ramfs file system support" if TMPFS_ROOT
18+ default n
19+ ---help---
20+ Ramfs is a file system which keeps all files in RAM. Unlike tmpfs,
21+ it cannot be swapped to disk, and it has the risk of deadlocking
22+ the system by using all memory.
23+
24+ Ramfs is used for booting the system and unpacking the cpio if
25+ TMPFS_ROOT is not set.
26+
27 config HUGETLBFS
28 bool "HugeTLB file system support"
29 depends on X86 || IA64 || PPC64 || SPARC64 || (SUPERH && MMU) || \
30diff -ruw linux-2.6.30.orig/fs/ramfs/inode.c linux-2.6.30/fs/ramfs/inode.c
31--- linux-2.6.30.orig/fs/ramfs/inode.c 2009-02-12 17:51:15.000000000 +0000
32+++ linux-2.6.30/fs/ramfs/inode.c 2009-02-13 11:30:30.000000000 +0000
33@@ -255,17 +255,18 @@
34 return err;
35 }
36
37+
38 struct dentry *ramfs_mount(struct file_system_type *fs_type,
39 int flags, const char *dev_name, void *data)
40 {
41 return mount_nodev(fs_type, flags, data, ramfs_fill_super);
42 }
43
44-static struct dentry *rootfs_mount(struct file_system_type *fs_type,
45- int flags, const char *dev_name, void *data)
46-{
47- return mount_nodev(fs_type, flags|MS_NOUSER, data, ramfs_fill_super);
48-}
49+static struct file_system_type ramfs_fs_type = {
50+ .name = "ramfs",
51+ .mount = ramfs_mount,
52+ .kill_sb = kill_litter_super,
53+};
54
55 static void ramfs_kill_sb(struct super_block *sb)
56 {
57@@ -273,30 +274,19 @@
58 kill_litter_super(sb);
59 }
60
61-static struct file_system_type ramfs_fs_type = {
62- .name = "ramfs",
63- .mount = ramfs_mount,
64- .kill_sb = ramfs_kill_sb,
65-};
66+#ifndef CONFIG_TMPFS_ROOT
67+static struct dentry *rootfs_mount(struct file_system_type *fs_type,
68+ int flags, const char *dev_name, void *data)
69+{
70+ return mount_nodev(fs_type, flags|MS_NOUSER, data, ramfs_fill_super);
71+}
72+
73 static struct file_system_type rootfs_fs_type = {
74 .name = "rootfs",
75 .mount = rootfs_mount,
76 .kill_sb = kill_litter_super,
77 };
78
79-static int __init init_ramfs_fs(void)
80-{
81- return register_filesystem(&ramfs_fs_type);
82-}
83-
84-static void __exit exit_ramfs_fs(void)
85-{
86- unregister_filesystem(&ramfs_fs_type);
87-}
88-
89-module_init(init_ramfs_fs)
90-module_exit(exit_ramfs_fs)
91-
92 int __init init_rootfs(void)
93 {
94 int err;
95@@ -311,5 +301,19 @@
96
97 return err;
98 }
99+#endif
100+
101+static int __init init_ramfs_fs(void)
102+{
103+ return register_filesystem(&ramfs_fs_type);
104+}
105+
106+static void __exit exit_ramfs_fs(void)
107+{
108+ unregister_filesystem(&ramfs_fs_type);
109+}
110+
111+module_init(init_ramfs_fs)
112+module_exit(exit_ramfs_fs)
113
114 MODULE_LICENSE("GPL");
115diff -ruw linux-2.6.30.orig/mm/shmem.c linux-2.6.30/mm/shmem.c
116--- linux-2.6.30.orig/mm/shmem.c 2009-02-12 17:51:15.000000000 +0000
117+++ linux-2.6.30/mm/shmem.c 2009-02-13 11:42:02.000000000 +0000
118@@ -86,7 +86,7 @@
119 #ifdef CONFIG_TMPFS
120 static unsigned long shmem_default_max_blocks(void)
121 {
122- return totalram_pages / 2;
123+ return totalram_pages / 10 * 9;
124 }
125
126 static unsigned long shmem_default_max_inodes(void)
127@@ -2369,6 +2369,10 @@
128
129 static int init_inodecache(void)
130 {
131+#ifdef CONFIG_TMPFS_ROOT
132+ if (shmem_inode_cachep)
133+ return 0;
134+#endif
135 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
136 sizeof(struct shmem_inode_info),
137 0, SLAB_PANIC, init_once);
138@@ -2587,6 +2591,27 @@
139 }
140 EXPORT_SYMBOL_GPL(shmem_file_setup);
141
142+#ifdef CONFIG_TMPFS_ROOT
143+static int rootfs_get_sb(struct file_system_type *fs_type,
144+ int flags, const char *dev_name, void *data, struct vfsmount *mnt)
145+{
146+ return get_sb_nodev(fs_type, flags, data, shmem_fill_super, mnt);
147+}
148+
149+static struct file_system_type rootfs_fs_type = {
150+ .name = "rootfs",
151+ .get_sb = rootfs_get_sb,
152+ .kill_sb = kill_litter_super,
153+};
154+
155+int __init init_rootfs(void)
156+{
157+ if (init_inodecache())
158+ panic("Can't initialize shm inode cache");
159+ return register_filesystem(&rootfs_fs_type);
160+}
161+#endif
162+
163 /**
164 * shmem_zero_setup - setup a shared anonymous mapping
165 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
This page took 0.026003 seconds and 4 git commands to generate.