hostfs: Report append flag in ->show_options()
[firefly-linux-kernel-4.4.55.git] / fs / hostfs / hostfs_kern.c
index c60d886230efedeff9cbad1996bd6f5b4d3f662a..06b3e3f47c0ee4e714f37a5a10d0425035893586 100644 (file)
@@ -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;
 }