)
 );
 
-/**
- ** Allocation/release of rpcrdma_reqs and rpcrdma_reps
- **/
-
-TRACE_EVENT(xprtrdma_op_free,
-       TP_PROTO(
-               const struct rpc_task *task,
-               const struct rpcrdma_req *req
-       ),
-
-       TP_ARGS(task, req),
-
-       TP_STRUCT__entry(
-               __field(unsigned int, task_id)
-               __field(unsigned int, client_id)
-               __field(const void *, req)
-               __field(const void *, rep)
-       ),
-
-       TP_fast_assign(
-               __entry->task_id = task->tk_pid;
-               __entry->client_id = task->tk_client->cl_clid;
-               __entry->req = req;
-               __entry->rep = req->rl_reply;
-       ),
-
-       TP_printk("task:%u@%u req=%p rep=%p",
-               __entry->task_id, __entry->client_id,
-               __entry->req, __entry->rep
-       )
-);
-
 /**
  ** Callback events
  **/
 
        buf = container_of(buffer, struct rpc_buffer, data);
        size = buf->len;
 
-       dprintk("RPC:       freeing buffer of size %zu at %p\n",
-                       size, buf);
-
        if (size <= RPC_BUFFER_MAXSIZE)
                mempool_free(buf, rpc_buffer_mempool);
        else
 
        if (req->rq_release_snd_buf)
                req->rq_release_snd_buf(req);
 
-       dprintk("RPC: %5u release request %p\n", task->tk_pid, req);
        if (likely(!bc_prealloc(req)))
                xprt->ops->free_slot(xprt, req);
        else
 
        struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
        struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
 
-       trace_xprtrdma_op_free(task, req);
-
        if (!list_empty(&req->rl_registered))
                frwr_unmap_sync(r_xprt, req);