struct svc_xprt_class   *xpt_class;
        const struct svc_xprt_ops *xpt_ops;
        struct kref             xpt_ref;
+       ktime_t                 xpt_qtime;
        struct list_head        xpt_list;
        struct lwq_node         xpt_ready;
        unsigned long           xpt_flags;
 
 
        TP_STRUCT__entry(
                SVC_XPRT_ENDPOINT_FIELDS(rqst->rq_xprt)
-
                __field(unsigned long, wakeup)
+               __field(unsigned long, qtime)
        ),
 
        TP_fast_assign(
-               SVC_XPRT_ENDPOINT_ASSIGNMENTS(rqst->rq_xprt);
+               ktime_t ktime = ktime_get();
 
-               __entry->wakeup = ktime_to_us(ktime_sub(ktime_get(),
-                                                       rqst->rq_qtime));
+               SVC_XPRT_ENDPOINT_ASSIGNMENTS(rqst->rq_xprt);
+               __entry->wakeup = ktime_to_us(ktime_sub(ktime, rqst->rq_qtime));
+               __entry->qtime = ktime_to_us(ktime_sub(ktime, rqst->rq_xprt->xpt_qtime));
        ),
 
-       TP_printk(SVC_XPRT_ENDPOINT_FORMAT " wakeup-us=%lu",
-               SVC_XPRT_ENDPOINT_VARARGS, __entry->wakeup)
+       TP_printk(SVC_XPRT_ENDPOINT_FORMAT " wakeup-us=%lu qtime-us=%lu",
+               SVC_XPRT_ENDPOINT_VARARGS, __entry->wakeup, __entry->qtime)
 );
 
 DECLARE_EVENT_CLASS(svc_xprt_event,
 
        pool = svc_pool_for_cpu(xprt->xpt_server);
 
        percpu_counter_inc(&pool->sp_sockets_queued);
+       xprt->xpt_qtime = ktime_get();
        lwq_enqueue(&xprt->xpt_ready, &pool->sp_xprts);
 
        svc_pool_wake_idle_thread(pool);