Made a minor change "Server capability: " --> "Server capabilities:" to make it consistent with the places we print session and tcon capabilities in the DebugData Let me know if any objections On Mon, Oct 30, 2023 at 6:00 AM <nspmangalore@xxxxxxxxx> wrote: > > From: Shyam Prasad N <sprasad@xxxxxxxxxxxxx> > > In the output of /proc/fs/cifs/DebugData, we do not > print the server->capabilities field today. > With this change, we will do that. > > Signed-off-by: Shyam Prasad N <sprasad@xxxxxxxxxxxxx> > --- > fs/smb/client/cifs_debug.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/fs/smb/client/cifs_debug.c b/fs/smb/client/cifs_debug.c > index 76922fcc4bc6..a9dfecc397a8 100644 > --- a/fs/smb/client/cifs_debug.c > +++ b/fs/smb/client/cifs_debug.c > @@ -427,6 +427,8 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) > if (server->nosharesock) > seq_printf(m, " nosharesock"); > > + seq_printf(m, "\nServer capability: 0x%x", server->capabilities); > + > if (server->rdma) > seq_printf(m, "\nRDMA "); > seq_printf(m, "\nTCP status: %d Instance: %d" > -- > 2.34.1 > -- Thanks, Steve