Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Side by Side Diff: init/do_mounts.h

Issue 2020011: CHROMIUM: add boot-to-device mapper support. (Closed) Base URL: ssh://git@gitrw.chromium.org//kernel.git
Patch Set: fix the onyl Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « init/Makefile ('k') | init/do_mounts.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include <linux/kernel.h> 1 #include <linux/kernel.h>
2 #include <linux/blkdev.h> 2 #include <linux/blkdev.h>
3 #include <linux/init.h> 3 #include <linux/init.h>
4 #include <linux/syscalls.h> 4 #include <linux/syscalls.h>
5 #include <linux/unistd.h> 5 #include <linux/unistd.h>
6 #include <linux/slab.h> 6 #include <linux/slab.h>
7 #include <linux/mount.h> 7 #include <linux/mount.h>
8 #include <linux/major.h> 8 #include <linux/major.h>
9 #include <linux/root_dev.h> 9 #include <linux/root_dev.h>
10 10
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 67
68 #ifdef CONFIG_BLK_DEV_MD 68 #ifdef CONFIG_BLK_DEV_MD
69 69
70 void md_run_setup(void); 70 void md_run_setup(void);
71 71
72 #else 72 #else
73 73
74 static inline void md_run_setup(void) {} 74 static inline void md_run_setup(void) {}
75 75
76 #endif 76 #endif
77
78 #ifdef CONFIG_BLK_DEV_DM
79
80 void dm_run_setup(void);
81
82 #else
83
84 static inline void dm_run_setup(void) {}
85
86 #endif
OLDNEW
« no previous file with comments | « init/Makefile ('k') | init/do_mounts.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698