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

Commit f579903e authored by Suresh Jayaraman's avatar Suresh Jayaraman Committed by Steve French
Browse files

cifs: show features compiled in as part of DebugData



Fixed the nit pointed out by Jeff.

From: Suresh Jayaraman <sjayaraman@suse.de>
Subject: [PATCH 1/2] cifs: show features compiled in as part of DebugData

This patch adds the features that are compiled in to the CIFS debugging data
as shown below:

	$cat /proc/fs/cifs/DebugData
	Display Internal CIFS Data Structures for Debugging
	---------------------------------------------------
	CIFS Version 1.64
	Features: dfs fscache posix spnego xattr
	Active VFS Requests: 0
	...

This patch provides a definitive way to tell what features are currently
enabled in the running kernel. This could also help debugging.

Signed-off-by: default avatarSuresh Jayaraman <sjayaraman@suse.de>
Cc: Jeff Layton <jlayton@redhat.com>
Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent 95c99904
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
@@ -119,6 +119,31 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v)
		    "Display Internal CIFS Data Structures for Debugging\n"
		    "---------------------------------------------------\n");
	seq_printf(m, "CIFS Version %s\n", CIFS_VERSION);
	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
	seq_putc(m, '\n');
	seq_printf(m, "Active VFS Requests: %d\n", GlobalTotalActiveXid);
	seq_printf(m, "Servers:");