commit | 7f74a6687992f29c14b98a7bc8d5d924d5883434 | [log] [tgz] |
---|---|---|
author | Richard Weinberger <richard@nod.at> | Wed Mar 04 00:00:54 2015 +0100 |
committer | Richard Weinberger <richard@nod.at> | Thu Mar 26 23:27:51 2015 +0100 |
tree | 5b5009661468dfc55ebdb88557199938d70bc8fc | |
parent | 7c9509924c711d45d7932548d2c632f44f64e7e3 [diff] |
hostfs: Report append flag in ->show_options() hostfs has an "append" mount option. Report it. Signed-off-by: Richard Weinberger <richard@nod.at>
diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c index c60d886..06b3e3f 100644 --- a/fs/hostfs/hostfs_kern.c +++ b/fs/hostfs/hostfs_kern.c
@@ -262,6 +262,9 @@ if (strlen(root_path) > offset) seq_printf(seq, ",%s", root_path + offset); + if (append) + seq_puts(seq, ",append"); + return 0; }