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

Commit ca40b714 authored by Jeff Layton's avatar Jeff Layton Committed by Steve French
Browse files

cifs: show "acl" in DebugData Features when it's compiled in



...and while we're at it, reduce the number of calls into the seq_*
functions by prepending spaces to strings.

Signed-off-by: default avatarJeff Layton <jlayton@redhat.com>
Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent b4d6fcf1
Loading
Loading
Loading
Loading
+10 −12
Original line number Diff line number Diff line
@@ -122,26 +122,24 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v)
	seq_printf(m, "Features:");
#ifdef CONFIG_CIFS_DFS_UPCALL
	seq_printf(m, " dfs");
	seq_putc(m, ' ');
#endif
#ifdef CONFIG_CIFS_FSCACHE
	seq_printf(m, " fscache");
	seq_putc(m, ' ');
#endif
#ifdef CONFIG_CIFS_WEAK_PW_HASH
	seq_printf(m, " lanman");
	seq_putc(m, ' ');
#endif
#ifdef CONFIG_CIFS_POSIX
	seq_printf(m, " posix");
	seq_putc(m, ' ');
#endif
#ifdef CONFIG_CIFS_UPCALL
	seq_printf(m, " spnego");
	seq_putc(m, ' ');
#endif
#ifdef CONFIG_CIFS_XATTR
	seq_printf(m, " xattr");
#endif
#ifdef CONFIG_CIFS_ACL
	seq_printf(m, " acl");
#endif
	seq_putc(m, '\n');
	seq_printf(m, "Active VFS Requests: %d\n", GlobalTotalActiveXid);