diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2018-05-20 18:25:49 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-05-30 15:33:32 -0600 |
commit | 64c4bc4de79fec06bb46d9827e7c4df67a025590 (patch) | |
tree | c04e775d22e590c983399a273e1355b6042522dd /include | |
parent | 0892fac8719f062f98116ee883230a004a9fce1e (diff) | |
download | linux-64c4bc4de79fec06bb46d9827e7c4df67a025590.tar.bz2 |
pktcdvd: convert to bioset_init()/mempool_init()
Convert pktcdvd to embedded bio sets.
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pktcdvd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pktcdvd.h b/include/linux/pktcdvd.h index 93d142ad1528..174601554b06 100644 --- a/include/linux/pktcdvd.h +++ b/include/linux/pktcdvd.h @@ -186,7 +186,7 @@ struct pktcdvd_device sector_t current_sector; /* Keep track of where the elevator is */ atomic_t scan_queue; /* Set to non-zero when pkt_handle_queue */ /* needs to be run. */ - mempool_t *rb_pool; /* mempool for pkt_rb_node allocations */ + mempool_t rb_pool; /* mempool for pkt_rb_node allocations */ struct packet_iosched iosched; struct gendisk *disk; |