It's incorrectly taking an early exit if the tk_client has metrics. [squash with: nfs41: Add backchannel processing support to RPC state machine] Signed-off-by: Ricardo Labiaga <Ricardo.Labiaga@xxxxxxxxxx> --- net/sunrpc/stats.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/sunrpc/stats.c b/net/sunrpc/stats.c index c1517e2..1b4e679 100644 --- a/net/sunrpc/stats.c +++ b/net/sunrpc/stats.c @@ -145,7 +145,7 @@ void rpc_count_iostats(struct rpc_task *task) struct rpc_iostats *op_metrics; long rtt, execute, queue; - if (!task->tk_client || task->tk_client->cl_metrics || !req) + if (!task->tk_client || !task->tk_client->cl_metrics || !req) return; stats = task->tk_client->cl_metrics; -- 1.5.4.3 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html