Commit 666dc7c9 authored by Joe Perches's avatar Joe Perches Committed by Linus Torvalds

pktcdvd: fix defective misuses of pkt_<level>

Fix thinkos where pkt_<level> needs a valid pktcdvd_device * and the
pointer is known to be NULL.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com> (go smatch!)
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f3ded788
...@@ -2360,8 +2360,8 @@ static void pkt_make_request(struct request_queue *q, struct bio *bio) ...@@ -2360,8 +2360,8 @@ static void pkt_make_request(struct request_queue *q, struct bio *bio)
pd = q->queuedata; pd = q->queuedata;
if (!pd) { if (!pd) {
pkt_err(pd, "%s incorrect request queue\n", pr_err("%s incorrect request queue\n",
bdevname(bio->bi_bdev, b)); bdevname(bio->bi_bdev, b));
goto end_io; goto end_io;
} }
...@@ -2841,7 +2841,7 @@ static int pkt_remove_dev(dev_t pkt_dev) ...@@ -2841,7 +2841,7 @@ static int pkt_remove_dev(dev_t pkt_dev)
break; break;
} }
if (idx == MAX_WRITERS) { if (idx == MAX_WRITERS) {
pkt_dbg(1, pd, "dev not setup\n"); pr_debug("dev not setup\n");
ret = -ENXIO; ret = -ENXIO;
goto out; goto out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment