SUNRPC: Add a trace point in svc_xprt_deferred_close

The trace point in svc_xprt_close() reports only some local close
requests. Try to capture more local close requests.

Note that "trace-cmd record -T -e sunrpc:svc_xprt_close" will
neatly capture the identity of the caller requesting the close.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

+1
+1
net/sunrpc/svc_xprt.c
··· 157 157 */ 158 158 void svc_xprt_deferred_close(struct svc_xprt *xprt) 159 159 { 160 + trace_svc_xprt_close(xprt); 160 161 if (!test_and_set_bit(XPT_CLOSE, &xprt->xpt_flags)) 161 162 svc_xprt_enqueue(xprt); 162 163 }