aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@redhat.com>2010-10-25 20:24:48 -0400
committerJ. Bruce Fields <bfields@redhat.com>2010-11-19 18:35:12 -0500
commitb176331627fccc726d28f4fc4a357d1f3c19dbf0 (patch)
treef7190ebede63602d21fc7c227a3517b40b35e94d /net
parentf8c0d226fef05226ff1a85055c8ed663022f40c1 (diff)
svcrpc: svc_close_xprt comment
Neil Brown had to explain to me why we do this here; record the answer for posterity. Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net')
-rw-r--r--net/sunrpc/svc_xprt.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c
index 8c018df80692..bfbda676574a 100644
--- a/net/sunrpc/svc_xprt.c
+++ b/net/sunrpc/svc_xprt.c
@@ -931,7 +931,12 @@ void svc_close_xprt(struct svc_xprt *xprt)
931 if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags)) 931 if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags))
932 /* someone else will have to effect the close */ 932 /* someone else will have to effect the close */
933 return; 933 return;
934 934 /*
935 * We expect svc_close_xprt() to work even when no threads are
936 * running (e.g., while configuring the server before starting
937 * any threads), so if the transport isn't busy, we delete
938 * it ourself:
939 */
935 svc_delete_xprt(xprt); 940 svc_delete_xprt(xprt);
936} 941}
937EXPORT_SYMBOL_GPL(svc_close_xprt); 942EXPORT_SYMBOL_GPL(svc_close_xprt);