.. | .. |
---|
619 | 619 | seq_printf(s, ",echo_interval=%lu", |
---|
620 | 620 | tcon->ses->server->echo_interval / HZ); |
---|
621 | 621 | |
---|
622 | | - /* Only display max_credits if it was overridden on mount */ |
---|
| 622 | + /* Only display the following if overridden on mount */ |
---|
623 | 623 | if (tcon->ses->server->max_credits != SMB2_MAX_CREDITS_AVAILABLE) |
---|
624 | 624 | 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"); |
---|
625 | 631 | |
---|
626 | 632 | if (tcon->snapshot_time) |
---|
627 | 633 | seq_printf(s, ",snapshot=%llu", tcon->snapshot_time); |
---|