mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
block-5.15-2021-10-22
-----BEGIN PGP SIGNATURE----- iQJEBAABCAAuFiEEwPw5LcreJtl1+l5K99NY+ylx4KYFAmFzfzwQHGF4Ym9lQGtl cm5lbC5kawAKCRD301j7KXHgpqvoEACZB9dFKiYyFcv6X6ARAhfKDuE4ImaJ/hLI VCt4M52P06nqywPQ7iyZMRWR/EVKW8ADDJiiAeXy3mDBgMqD6O27u894i1JP06sn 5gHcSvfH1b9PNFMUw04aI3iXXFUzQU7pwn5z6o2nXlA4onPVW7vwTp8fcHd41Kep LqvZJbihW/iF9d0Wjs9LqPRBWXchtsVyxiNDBgC+kx5IYFn+oTnZOhlxw8ZiT/KH 0v8FIq9HY+5n6UP7InZF2gtIQUyDTR5L1zKKvJu5LDoHvcNlM6Ke0m3DVPcgP79D 2kKGyHOGfqC9Gr37qqOjgKqRO/Z/9SCvG39dmocAd/hh3AfUgKpDQs3HgLyx7ECT aRAe5n0XbfIVcHX1XaOc8cGrszan9YhJvt/dMCmkjaG/3hASlzl2kV4QF3f5IVjx oMgB1Kj8kyu6SqG8mCCjyGCxPpzNq8lVplJRlpifoz+ID/+hgt03aDoYVfPZkDRL nf4VdQCRSl3ZEXkHy1j6l6Nb2UgNEZP1B3a/9onSyBJ/WYqSfFMXrx29PSirz7m7 x4jGOJvdqtNx09zjWHXc/d+I8BEXp4JDXe0GH0OHMiwCwz5PoMo99HRb+IuffKjR lWl4EimH0bfzOA/3vFr5TigfqbnDJ7HCRrGsodQX8gJhVaxVTWxeZG+7Y9qkLqnD JGlZeMQ37w== =uhGw -----END PGP SIGNATURE----- Merge tag 'block-5.15-2021-10-22' of git://git.kernel.dk/linux-block Pull block fixes from Jens Axboe: "Fix for the cgroup code not ussing irq safe stats updates, and one fix for an error handling condition in add_partition()" * tag 'block-5.15-2021-10-22' of git://git.kernel.dk/linux-block: block: fix incorrect references to disk objects blk-cgroup: blk_cgroup_bio_start() should use irq-safe operations on blkg->iostat_cpu
This commit is contained in:
commit
9c0c4d24ac
@ -1897,10 +1897,11 @@ void blk_cgroup_bio_start(struct bio *bio)
|
|||||||
{
|
{
|
||||||
int rwd = blk_cgroup_io_type(bio), cpu;
|
int rwd = blk_cgroup_io_type(bio), cpu;
|
||||||
struct blkg_iostat_set *bis;
|
struct blkg_iostat_set *bis;
|
||||||
|
unsigned long flags;
|
||||||
|
|
||||||
cpu = get_cpu();
|
cpu = get_cpu();
|
||||||
bis = per_cpu_ptr(bio->bi_blkg->iostat_cpu, cpu);
|
bis = per_cpu_ptr(bio->bi_blkg->iostat_cpu, cpu);
|
||||||
u64_stats_update_begin(&bis->sync);
|
flags = u64_stats_update_begin_irqsave(&bis->sync);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If the bio is flagged with BIO_CGROUP_ACCT it means this is a split
|
* If the bio is flagged with BIO_CGROUP_ACCT it means this is a split
|
||||||
@ -1912,7 +1913,7 @@ void blk_cgroup_bio_start(struct bio *bio)
|
|||||||
}
|
}
|
||||||
bis->cur.ios[rwd]++;
|
bis->cur.ios[rwd]++;
|
||||||
|
|
||||||
u64_stats_update_end(&bis->sync);
|
u64_stats_update_end_irqrestore(&bis->sync, flags);
|
||||||
if (cgroup_subsys_on_dfl(io_cgrp_subsys))
|
if (cgroup_subsys_on_dfl(io_cgrp_subsys))
|
||||||
cgroup_rstat_updated(bio->bi_blkg->blkcg->css.cgroup, cpu);
|
cgroup_rstat_updated(bio->bi_blkg->blkcg->css.cgroup, cpu);
|
||||||
put_cpu();
|
put_cpu();
|
||||||
|
@ -423,6 +423,7 @@ out_del:
|
|||||||
device_del(pdev);
|
device_del(pdev);
|
||||||
out_put:
|
out_put:
|
||||||
put_device(pdev);
|
put_device(pdev);
|
||||||
|
return ERR_PTR(err);
|
||||||
out_put_disk:
|
out_put_disk:
|
||||||
put_disk(disk);
|
put_disk(disk);
|
||||||
return ERR_PTR(err);
|
return ERR_PTR(err);
|
||||||
|
Loading…
Reference in New Issue
Block a user