aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2017-06-08 11:53:24 -0400
committerAnna Schumaker <Anna.Schumaker@Netapp.com>2017-07-13 16:00:13 -0400
commit6afafa7799cf6fa3c0efb6887704506d21965ad6 (patch)
tree706fff7f7167afe02667c42427d8697319a2b390
parentd933cc32019063fc4beb8b20528ca724bd1b7a52 (diff)
xprtrdma: Fix documenting comments in frwr_ops.c
Clean up. FASTREG and LOCAL_INV WRs are typically not signaled. localinv_wake is used for the last LOCAL_INV WR in a chain, which is always signaled. The documenting comments should reflect that. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
-rw-r--r--net/sunrpc/xprtrdma/frwr_ops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/sunrpc/xprtrdma/frwr_ops.c b/net/sunrpc/xprtrdma/frwr_ops.c
index 8f63d38e45a2..6aea36a38bfd 100644
--- a/net/sunrpc/xprtrdma/frwr_ops.c
+++ b/net/sunrpc/xprtrdma/frwr_ops.c
@@ -277,7 +277,7 @@ __frwr_sendcompletion_flush(struct ib_wc *wc, const char *wr)
277} 277}
278 278
279/** 279/**
280 * frwr_wc_fastreg - Invoked by RDMA provider for each polled FastReg WC 280 * frwr_wc_fastreg - Invoked by RDMA provider for a flushed FastReg WC
281 * @cq: completion queue (ignored) 281 * @cq: completion queue (ignored)
282 * @wc: completed WR 282 * @wc: completed WR
283 * 283 *
@@ -298,7 +298,7 @@ frwr_wc_fastreg(struct ib_cq *cq, struct ib_wc *wc)
298} 298}
299 299
300/** 300/**
301 * frwr_wc_localinv - Invoked by RDMA provider for each polled LocalInv WC 301 * frwr_wc_localinv - Invoked by RDMA provider for a flushed LocalInv WC
302 * @cq: completion queue (ignored) 302 * @cq: completion queue (ignored)
303 * @wc: completed WR 303 * @wc: completed WR
304 * 304 *
@@ -319,7 +319,7 @@ frwr_wc_localinv(struct ib_cq *cq, struct ib_wc *wc)
319} 319}
320 320
321/** 321/**
322 * frwr_wc_localinv - Invoked by RDMA provider for each polled LocalInv WC 322 * frwr_wc_localinv_wake - Invoked by RDMA provider for a signaled LocalInv WC
323 * @cq: completion queue (ignored) 323 * @cq: completion queue (ignored)
324 * @wc: completed WR 324 * @wc: completed WR
325 * 325 *