Skip to content

Commit 360c1f1

Browse files
committed
Merge tag 'block-6.12-20241004' of git://git.kernel.dk/linux
Pull block fixes from Jens Axboe: - Fix another use-after-free in aoe - Fixup wrong nested non-saving irq disable/restore in blk-iocost - Fixup a kerneldoc complaint introduced by a merge window patch * tag 'block-6.12-20241004' of git://git.kernel.dk/linux: aoe: fix the potential use-after-free problem in more places blk_iocost: remove some duplicate irq disable/enables block: fix blk_rq_map_integrity_sg kernel-doc
2 parents 43454e8 + 6d6e54f commit 360c1f1

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

block/blk-integrity.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ int blk_rq_count_integrity_sg(struct request_queue *q, struct bio *bio)
5656

5757
/**
5858
* blk_rq_map_integrity_sg - Map integrity metadata into a scatterlist
59-
* @q: request queue
60-
* @bio: bio with integrity metadata attached
59+
* @rq: request to map
6160
* @sglist: target scatterlist
6261
*
6362
* Description: Map the integrity vectors in request into a

block/blk-iocost.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -3166,7 +3166,7 @@ static u64 ioc_qos_prfill(struct seq_file *sf, struct blkg_policy_data *pd,
31663166
if (!dname)
31673167
return 0;
31683168

3169-
spin_lock_irq(&ioc->lock);
3169+
spin_lock(&ioc->lock);
31703170
seq_printf(sf, "%s enable=%d ctrl=%s rpct=%u.%02u rlat=%u wpct=%u.%02u wlat=%u min=%u.%02u max=%u.%02u\n",
31713171
dname, ioc->enabled, ioc->user_qos_params ? "user" : "auto",
31723172
ioc->params.qos[QOS_RPPM] / 10000,
@@ -3179,7 +3179,7 @@ static u64 ioc_qos_prfill(struct seq_file *sf, struct blkg_policy_data *pd,
31793179
ioc->params.qos[QOS_MIN] % 10000 / 100,
31803180
ioc->params.qos[QOS_MAX] / 10000,
31813181
ioc->params.qos[QOS_MAX] % 10000 / 100);
3182-
spin_unlock_irq(&ioc->lock);
3182+
spin_unlock(&ioc->lock);
31833183
return 0;
31843184
}
31853185

@@ -3366,14 +3366,14 @@ static u64 ioc_cost_model_prfill(struct seq_file *sf,
33663366
if (!dname)
33673367
return 0;
33683368

3369-
spin_lock_irq(&ioc->lock);
3369+
spin_lock(&ioc->lock);
33703370
seq_printf(sf, "%s ctrl=%s model=linear "
33713371
"rbps=%llu rseqiops=%llu rrandiops=%llu "
33723372
"wbps=%llu wseqiops=%llu wrandiops=%llu\n",
33733373
dname, ioc->user_cost_model ? "user" : "auto",
33743374
u[I_LCOEF_RBPS], u[I_LCOEF_RSEQIOPS], u[I_LCOEF_RRANDIOPS],
33753375
u[I_LCOEF_WBPS], u[I_LCOEF_WSEQIOPS], u[I_LCOEF_WRANDIOPS]);
3376-
spin_unlock_irq(&ioc->lock);
3376+
spin_unlock(&ioc->lock);
33773377
return 0;
33783378
}
33793379

drivers/block/aoe/aoecmd.c

+12-1
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,7 @@ ata_rw_frameinit(struct frame *f)
361361
}
362362

363363
ah->cmdstat = ATA_CMD_PIO_READ | writebit | extbit;
364+
dev_hold(t->ifp->nd);
364365
skb->dev = t->ifp->nd;
365366
}
366367

@@ -401,6 +402,8 @@ aoecmd_ata_rw(struct aoedev *d)
401402
__skb_queue_head_init(&queue);
402403
__skb_queue_tail(&queue, skb);
403404
aoenet_xmit(&queue);
405+
} else {
406+
dev_put(f->t->ifp->nd);
404407
}
405408
return 1;
406409
}
@@ -483,10 +486,13 @@ resend(struct aoedev *d, struct frame *f)
483486
memcpy(h->dst, t->addr, sizeof h->dst);
484487
memcpy(h->src, t->ifp->nd->dev_addr, sizeof h->src);
485488

489+
dev_hold(t->ifp->nd);
486490
skb->dev = t->ifp->nd;
487491
skb = skb_clone(skb, GFP_ATOMIC);
488-
if (skb == NULL)
492+
if (skb == NULL) {
493+
dev_put(t->ifp->nd);
489494
return;
495+
}
490496
f->sent = ktime_get();
491497
__skb_queue_head_init(&queue);
492498
__skb_queue_tail(&queue, skb);
@@ -617,6 +623,8 @@ probe(struct aoetgt *t)
617623
__skb_queue_head_init(&queue);
618624
__skb_queue_tail(&queue, skb);
619625
aoenet_xmit(&queue);
626+
} else {
627+
dev_put(f->t->ifp->nd);
620628
}
621629
}
622630

@@ -1395,6 +1403,7 @@ aoecmd_ata_id(struct aoedev *d)
13951403
ah->cmdstat = ATA_CMD_ID_ATA;
13961404
ah->lba3 = 0xa0;
13971405

1406+
dev_hold(t->ifp->nd);
13981407
skb->dev = t->ifp->nd;
13991408

14001409
d->rttavg = RTTAVG_INIT;
@@ -1404,6 +1413,8 @@ aoecmd_ata_id(struct aoedev *d)
14041413
skb = skb_clone(skb, GFP_ATOMIC);
14051414
if (skb)
14061415
f->sent = ktime_get();
1416+
else
1417+
dev_put(t->ifp->nd);
14071418

14081419
return skb;
14091420
}

0 commit comments

Comments
 (0)