提交 6e7c1770 编写于 作者: C Christoph Hellwig 提交者: Al Viro

fs: simplify get_filesystem_list / get_all_fs_names

Just output the '\0' separate list of supported file systems for block
devices directly rather than going through a pointless round of string
manipulation.

Based on an earlier patch from Al Viro <viro@zeniv.linux.org.uk>.

Vivek:
Modified list_bdev_fs_names() and split_fs_names() to return number of
null terminted strings to caller. Callers now use that information to
loop through all the strings instead of relying on one extra null char
being present at the end.
Signed-off-by: NChristoph Hellwig <hch@lst.de>
Signed-off-by: NVivek Goyal <vgoyal@redhat.com>
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 f9259be6
...@@ -209,21 +209,28 @@ SYSCALL_DEFINE3(sysfs, int, option, unsigned long, arg1, unsigned long, arg2) ...@@ -209,21 +209,28 @@ SYSCALL_DEFINE3(sysfs, int, option, unsigned long, arg1, unsigned long, arg2)
} }
#endif #endif
int __init get_filesystem_list(char *buf) int __init list_bdev_fs_names(char *buf, size_t size)
{ {
int len = 0; struct file_system_type *p;
struct file_system_type * tmp; size_t len;
int count = 0;
read_lock(&file_systems_lock); read_lock(&file_systems_lock);
tmp = file_systems; for (p = file_systems; p; p = p->next) {
while (tmp && len < PAGE_SIZE - 80) { if (!(p->fs_flags & FS_REQUIRES_DEV))
len += sprintf(buf+len, "%s\t%s\n", continue;
(tmp->fs_flags & FS_REQUIRES_DEV) ? "" : "nodev", len = strlen(p->name) + 1;
tmp->name); if (len > size) {
tmp = tmp->next; pr_warn("%s: truncating file system list\n", __func__);
break;
}
memcpy(buf, p->name, len);
buf += len;
size -= len;
count++;
} }
read_unlock(&file_systems_lock); read_unlock(&file_systems_lock);
return len; return count;
} }
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
......
...@@ -3622,7 +3622,7 @@ int proc_nr_dentry(struct ctl_table *table, int write, ...@@ -3622,7 +3622,7 @@ int proc_nr_dentry(struct ctl_table *table, int write,
void *buffer, size_t *lenp, loff_t *ppos); void *buffer, size_t *lenp, loff_t *ppos);
int proc_nr_inodes(struct ctl_table *table, int write, int proc_nr_inodes(struct ctl_table *table, int write,
void *buffer, size_t *lenp, loff_t *ppos); void *buffer, size_t *lenp, loff_t *ppos);
int __init get_filesystem_list(char *buf); int __init list_bdev_fs_names(char *buf, size_t size);
#define __FMODE_EXEC ((__force int) FMODE_EXEC) #define __FMODE_EXEC ((__force int) FMODE_EXEC)
#define __FMODE_NONOTIFY ((__force int) FMODE_NONOTIFY) #define __FMODE_NONOTIFY ((__force int) FMODE_NONOTIFY)
......
...@@ -338,32 +338,22 @@ __setup("rootflags=", root_data_setup); ...@@ -338,32 +338,22 @@ __setup("rootflags=", root_data_setup);
__setup("rootfstype=", fs_names_setup); __setup("rootfstype=", fs_names_setup);
__setup("rootdelay=", root_delay_setup); __setup("rootdelay=", root_delay_setup);
static void __init split_fs_names(char *page, char *names) static int __init split_fs_names(char *page, char *names)
{ {
strcpy(page, root_fs_names); int count = 0;
while (*page++) { char *p = page;
if (page[-1] == ',')
page[-1] = '\0';
}
*page = '\0';
}
static void __init get_all_fs_names(char *page)
{
int len = get_filesystem_list(page);
char *s = page, *p, *next;
page[len] = '\0'; strcpy(p, root_fs_names);
for (p = page - 1; p; p = next) { while (*p++) {
next = strchr(++p, '\n'); if (p[-1] == ',')
if (*p++ != '\t') p[-1] = '\0';
continue;
while ((*s++ = *p++) != '\n')
;
s[-1] = '\0';
} }
*p = '\0';
for (p = page; *p; p += strlen(p)+1)
count++;
*s = '\0'; return count;
} }
static int __init do_mount_root(const char *name, const char *fs, static int __init do_mount_root(const char *name, const char *fs,
...@@ -409,15 +399,16 @@ void __init mount_block_root(char *name, int flags) ...@@ -409,15 +399,16 @@ void __init mount_block_root(char *name, int flags)
char *fs_names = page_address(page); char *fs_names = page_address(page);
char *p; char *p;
char b[BDEVNAME_SIZE]; char b[BDEVNAME_SIZE];
int num_fs, i;
scnprintf(b, BDEVNAME_SIZE, "unknown-block(%u,%u)", scnprintf(b, BDEVNAME_SIZE, "unknown-block(%u,%u)",
MAJOR(ROOT_DEV), MINOR(ROOT_DEV)); MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
if (root_fs_names) if (root_fs_names)
split_fs_names(fs_names, root_fs_names); num_fs = split_fs_names(fs_names, root_fs_names);
else else
get_all_fs_names(fs_names); num_fs = list_bdev_fs_names(fs_names, PAGE_SIZE);
retry: retry:
for (p = fs_names; *p; p += strlen(p)+1) { for (i = 0, p = fs_names; i < num_fs; i++, p += strlen(p)+1) {
int err = do_mount_root(name, p, flags, root_mount_data); int err = do_mount_root(name, p, flags, root_mount_data);
switch (err) { switch (err) {
case 0: case 0:
...@@ -450,7 +441,7 @@ void __init mount_block_root(char *name, int flags) ...@@ -450,7 +441,7 @@ void __init mount_block_root(char *name, int flags)
printk("List of all partitions:\n"); printk("List of all partitions:\n");
printk_all_partitions(); printk_all_partitions();
printk("No filesystem could mount root, tried: "); printk("No filesystem could mount root, tried: ");
for (p = fs_names; *p; p += strlen(p)+1) for (i = 0, p = fs_names; i < num_fs; i++, p += strlen(p)+1)
printk(" %s", p); printk(" %s", p);
printk("\n"); printk("\n");
panic("VFS: Unable to mount root fs on %s", b); panic("VFS: Unable to mount root fs on %s", b);
...@@ -551,13 +542,15 @@ static int __init mount_nodev_root(void) ...@@ -551,13 +542,15 @@ static int __init mount_nodev_root(void)
{ {
char *fs_names, *fstype; char *fs_names, *fstype;
int err = -EINVAL; int err = -EINVAL;
int num_fs, i;
fs_names = (void *)__get_free_page(GFP_KERNEL); fs_names = (void *)__get_free_page(GFP_KERNEL);
if (!fs_names) if (!fs_names)
return -EINVAL; return -EINVAL;
split_fs_names(fs_names, root_fs_names); num_fs = split_fs_names(fs_names, root_fs_names);
for (fstype = fs_names; *fstype; fstype += strlen(fstype) + 1) { for (i = 0, fstype = fs_names; i < num_fs;
i++, fstype += strlen(fstype) + 1) {
if (!fs_is_nodev(fstype)) if (!fs_is_nodev(fstype))
continue; continue;
err = do_mount_root(root_device_name, fstype, root_mountflags, err = do_mount_root(root_device_name, fstype, root_mountflags,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册