cifs: Identify a connection by a conn_id.
Introduced a new field conn_id in TCP_Server_Info structure. This is a non-persistent unique identifier maintained by the client for a connection to a file server. For this, a global counter named tcpSesNextId is maintained. On allocating a new TCP_Server_Info, this counter is incremented and assigned. Changed the dynamic tracepoints related to reconnects and crediting to be more informative (with conn_id printed). Debugging a crediting issue helped me understand the important things to print here. Always call dynamic tracepoints outside the scope of spinlocks. To do this, copy out the credits and in_flight fields of the server struct before dropping the lock. Signed-off-by:Shyam Prasad N <sprasad@microsoft.com> Reviewed-by:
Pavel Shilovsky <pshilov@microsoft.com> Signed-off-by:
Steve French <stfrench@microsoft.com>
Showing
- fs/cifs/cifsfs.c 1 addition, 0 deletionsfs/cifs/cifsfs.c
- fs/cifs/cifsglob.h 2 additions, 0 deletionsfs/cifs/cifsglob.h
- fs/cifs/connect.c 7 additions, 4 deletionsfs/cifs/connect.c
- fs/cifs/smb2ops.c 47 additions, 16 deletionsfs/cifs/smb2ops.c
- fs/cifs/trace.h 26 additions, 10 deletionsfs/cifs/trace.h
- fs/cifs/transport.c 39 additions, 14 deletionsfs/cifs/transport.c
Loading
Please register or sign in to comment