diff options
-rw-r--r-- | include/linux/mount.h | 2 | ||||
-rw-r--r-- | init/do_mounts.c | 1 | ||||
-rw-r--r-- | init/do_mounts.h | 1 | ||||
-rw-r--r-- | kernel/power/disk.c | 2 | ||||
-rw-r--r-- | kernel/power/swsusp.c | 3 |
5 files changed, 6 insertions, 3 deletions
diff --git a/include/linux/mount.h b/include/linux/mount.h index 74b4727a4e30..f8f39937e301 100644 --- a/include/linux/mount.h +++ b/include/linux/mount.h | |||
@@ -12,6 +12,7 @@ | |||
12 | #define _LINUX_MOUNT_H | 12 | #define _LINUX_MOUNT_H |
13 | #ifdef __KERNEL__ | 13 | #ifdef __KERNEL__ |
14 | 14 | ||
15 | #include <linux/types.h> | ||
15 | #include <linux/list.h> | 16 | #include <linux/list.h> |
16 | #include <linux/spinlock.h> | 17 | #include <linux/spinlock.h> |
17 | #include <asm/atomic.h> | 18 | #include <asm/atomic.h> |
@@ -76,6 +77,7 @@ extern int do_add_mount(struct vfsmount *newmnt, struct nameidata *nd, | |||
76 | extern void mark_mounts_for_expiry(struct list_head *mounts); | 77 | extern void mark_mounts_for_expiry(struct list_head *mounts); |
77 | 78 | ||
78 | extern spinlock_t vfsmount_lock; | 79 | extern spinlock_t vfsmount_lock; |
80 | extern dev_t name_to_dev_t(char *name); | ||
79 | 81 | ||
80 | #endif | 82 | #endif |
81 | #endif /* _LINUX_MOUNT_H */ | 83 | #endif /* _LINUX_MOUNT_H */ |
diff --git a/init/do_mounts.c b/init/do_mounts.c index b7570c074d0f..1b02be734ccc 100644 --- a/init/do_mounts.c +++ b/init/do_mounts.c | |||
@@ -7,6 +7,7 @@ | |||
7 | #include <linux/root_dev.h> | 7 | #include <linux/root_dev.h> |
8 | #include <linux/security.h> | 8 | #include <linux/security.h> |
9 | #include <linux/delay.h> | 9 | #include <linux/delay.h> |
10 | #include <linux/mount.h> | ||
10 | 11 | ||
11 | #include <linux/nfs_fs.h> | 12 | #include <linux/nfs_fs.h> |
12 | #include <linux/nfs_fs_sb.h> | 13 | #include <linux/nfs_fs_sb.h> |
diff --git a/init/do_mounts.h b/init/do_mounts.h index de92bee4f35e..e0a7ac9649e1 100644 --- a/init/do_mounts.h +++ b/init/do_mounts.h | |||
@@ -9,7 +9,6 @@ | |||
9 | #include <linux/major.h> | 9 | #include <linux/major.h> |
10 | #include <linux/root_dev.h> | 10 | #include <linux/root_dev.h> |
11 | 11 | ||
12 | dev_t name_to_dev_t(char *name); | ||
13 | void change_floppy(char *fmt, ...); | 12 | void change_floppy(char *fmt, ...); |
14 | void mount_block_root(char *name, int flags); | 13 | void mount_block_root(char *name, int flags); |
15 | void mount_root(void); | 14 | void mount_root(void); |
diff --git a/kernel/power/disk.c b/kernel/power/disk.c index c51a4d96d4eb..3ec789c6b537 100644 --- a/kernel/power/disk.c +++ b/kernel/power/disk.c | |||
@@ -16,6 +16,8 @@ | |||
16 | #include <linux/device.h> | 16 | #include <linux/device.h> |
17 | #include <linux/delay.h> | 17 | #include <linux/delay.h> |
18 | #include <linux/fs.h> | 18 | #include <linux/fs.h> |
19 | #include <linux/mount.h> | ||
20 | |||
19 | #include "power.h" | 21 | #include "power.h" |
20 | 22 | ||
21 | 23 | ||
diff --git a/kernel/power/swsusp.c b/kernel/power/swsusp.c index 7d7801cd01f0..f2bc71b9fe8b 100644 --- a/kernel/power/swsusp.c +++ b/kernel/power/swsusp.c | |||
@@ -63,6 +63,7 @@ | |||
63 | #include <linux/console.h> | 63 | #include <linux/console.h> |
64 | #include <linux/highmem.h> | 64 | #include <linux/highmem.h> |
65 | #include <linux/bio.h> | 65 | #include <linux/bio.h> |
66 | #include <linux/mount.h> | ||
66 | 67 | ||
67 | #include <asm/uaccess.h> | 68 | #include <asm/uaccess.h> |
68 | #include <asm/mmu_context.h> | 69 | #include <asm/mmu_context.h> |
@@ -1260,8 +1261,6 @@ static int data_read(struct pbe *pblist) | |||
1260 | return error; | 1261 | return error; |
1261 | } | 1262 | } |
1262 | 1263 | ||
1263 | extern dev_t name_to_dev_t(const char *line); | ||
1264 | |||
1265 | /** | 1264 | /** |
1266 | * read_pagedir - Read page backup list pages from swap | 1265 | * read_pagedir - Read page backup list pages from swap |
1267 | */ | 1266 | */ |