Commit 7f74a668 authored by Richard Weinberger's avatar Richard Weinberger

hostfs: Report append flag in ->show_options()

hostfs has an "append" mount option. Report it.
Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
parent 7c950992
......@@ -262,6 +262,9 @@ static int hostfs_show_options(struct seq_file *seq, struct dentry *root)
if (strlen(root_path) > offset)
seq_printf(seq, ",%s", root_path + offset);
if (append)
seq_puts(seq, ",append");
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment