Skip to content
Snippets Groups Projects
Commit 7f74a668 authored by Richard Weinberger's avatar Richard Weinberger
Browse files

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
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment