Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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;
}