hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/fs/cifs/cifsfs.c
....@@ -619,9 +619,15 @@
619619 seq_printf(s, ",echo_interval=%lu",
620620 tcon->ses->server->echo_interval / HZ);
621621
622
- /* Only display max_credits if it was overridden on mount */
622
+ /* Only display the following if overridden on mount */
623623 if (tcon->ses->server->max_credits != SMB2_MAX_CREDITS_AVAILABLE)
624624 seq_printf(s, ",max_credits=%u", tcon->ses->server->max_credits);
625
+ if (tcon->ses->server->tcp_nodelay)
626
+ seq_puts(s, ",tcpnodelay");
627
+ if (tcon->ses->server->noautotune)
628
+ seq_puts(s, ",noautotune");
629
+ if (tcon->ses->server->noblocksnd)
630
+ seq_puts(s, ",noblocksend");
625631
626632 if (tcon->snapshot_time)
627633 seq_printf(s, ",snapshot=%llu", tcon->snapshot_time);