Re: [PATCH] nbd: Consistently use request pointer in debug messages.

2018-06-05 Thread Jens Axboe
On 6/4/18 10:40 AM, kvi...@gmail.com wrote:
> From: Kevin Vigor 
> 
> Existing dev_dbg messages sometimes identify request using request
> pointer, sometimes using nbd_cmd pointer. This makes it hard to
> follow request flow. Consistently use request pointer instead.

Applied, with the SOB added.

-- 
Jens Axboe



Re: [PATCH] nbd: Consistently use request pointer in debug messages.

2018-06-05 Thread Jens Axboe
On 6/5/18 8:30 AM, Josef Bacik wrote:
> On Tue, Jun 05, 2018 at 08:23:06AM -0600, Jens Axboe wrote:
>> On 6/4/18 10:40 AM, kvi...@gmail.com wrote:
>>> From: Kevin Vigor 
>>>
>>> Existing dev_dbg messages sometimes identify request using request
>>> pointer, sometimes using nbd_cmd pointer. This makes it hard to
>>> follow request flow. Consistently use request pointer instead.
>>
>> You're missing the Signed-off-by.
>>
> 
> Blah sorry, still a little foggy,
> 
> Signed-off-by: Josef Bacik 

Not you, Kevin :-)

-- 
Jens Axboe



Re: [PATCH] nbd: Consistently use request pointer in debug messages.

2018-06-05 Thread Josef Bacik
On Tue, Jun 05, 2018 at 08:23:06AM -0600, Jens Axboe wrote:
> On 6/4/18 10:40 AM, kvi...@gmail.com wrote:
> > From: Kevin Vigor 
> > 
> > Existing dev_dbg messages sometimes identify request using request
> > pointer, sometimes using nbd_cmd pointer. This makes it hard to
> > follow request flow. Consistently use request pointer instead.
> 
> You're missing the Signed-off-by.
> 

Blah sorry, still a little foggy,

Signed-off-by: Josef Bacik 

Thanks,

Josef


Re: [PATCH] nbd: Consistently use request pointer in debug messages.

2018-06-05 Thread Jens Axboe
On 6/4/18 10:40 AM, kvi...@gmail.com wrote:
> From: Kevin Vigor 
> 
> Existing dev_dbg messages sometimes identify request using request
> pointer, sometimes using nbd_cmd pointer. This makes it hard to
> follow request flow. Consistently use request pointer instead.

You're missing the Signed-off-by.

-- 
Jens Axboe



Re: [PATCH] nbd: Consistently use request pointer in debug messages.

2018-06-05 Thread Josef Bacik
On Mon, Jun 04, 2018 at 10:40:12AM -0600, kvi...@gmail.com wrote:
> From: Kevin Vigor 
> 
> Existing dev_dbg messages sometimes identify request using request
> pointer, sometimes using nbd_cmd pointer. This makes it hard to
> follow request flow. Consistently use request pointer instead.

Reviewed-by: Josef Bacik 

Thanks,

Josef


[PATCH] nbd: Consistently use request pointer in debug messages.

2018-06-04 Thread kvigor
From: Kevin Vigor 

Existing dev_dbg messages sometimes identify request using request
pointer, sometimes using nbd_cmd pointer. This makes it hard to
follow request flow. Consistently use request pointer instead.
---
 drivers/block/nbd.c | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/block/nbd.c b/drivers/block/nbd.c
index 3ed1ef8..b5afa11 100644
--- a/drivers/block/nbd.c
+++ b/drivers/block/nbd.c
@@ -275,7 +275,7 @@ static void nbd_complete_rq(struct request *req)
 {
struct nbd_cmd *cmd = blk_mq_rq_to_pdu(req);
 
-   dev_dbg(nbd_to_dev(cmd->nbd), "request %p: %s\n", cmd,
+   dev_dbg(nbd_to_dev(cmd->nbd), "request %p: %s\n", req,
cmd->status ? "failed" : "done");
 
blk_mq_end_request(req, cmd->status);
@@ -482,7 +482,7 @@ static int nbd_send_cmd(struct nbd_device *nbd, struct 
nbd_cmd *cmd, int index)
memcpy(request.handle, , sizeof(tag));
 
dev_dbg(nbd_to_dev(nbd), "request %p: sending control (%s@%llu,%uB)\n",
-   cmd, nbdcmd_to_ascii(type),
+   req, nbdcmd_to_ascii(type),
(unsigned long long)blk_rq_pos(req) << 9, blk_rq_bytes(req));
result = sock_xmit(nbd, index, 1, ,
(type == NBD_CMD_WRITE) ? MSG_MORE : 0, );
@@ -518,7 +518,7 @@ static int nbd_send_cmd(struct nbd_device *nbd, struct 
nbd_cmd *cmd, int index)
int flags = is_last ? 0 : MSG_MORE;
 
dev_dbg(nbd_to_dev(nbd), "request %p: sending %d bytes 
data\n",
-   cmd, bvec.bv_len);
+   req, bvec.bv_len);
iov_iter_bvec(, ITER_BVEC | WRITE,
  , 1, bvec.bv_len);
if (skip) {
@@ -610,7 +610,7 @@ static struct nbd_cmd *nbd_read_stat(struct nbd_device 
*nbd, int index)
return cmd;
}
 
-   dev_dbg(nbd_to_dev(nbd), "request %p: got reply\n", cmd);
+   dev_dbg(nbd_to_dev(nbd), "request %p: got reply\n", req);
if (rq_data_dir(req) != WRITE) {
struct req_iterator iter;
struct bio_vec bvec;
@@ -637,7 +637,7 @@ static struct nbd_cmd *nbd_read_stat(struct nbd_device 
*nbd, int index)
return ERR_PTR(-EIO);
}
dev_dbg(nbd_to_dev(nbd), "request %p: got %d bytes 
data\n",
-   cmd, bvec.bv_len);
+   req, bvec.bv_len);
}
} else {
/* See the comment in nbd_queue_rq. */
-- 
2.7.4