commit | 8c54803b98d5907b45fe98270be5ed4fbc7e4c4c | [log] [tgz] |
---|---|---|
author | Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com> | Wed Jun 19 21:56:58 2019 -0700 |
committer | Jens Axboe <axboe@kernel.dk> | Thu Jun 20 03:18:54 2019 -0600 |
tree | c244752dcaa72bb47a270aa5bed76f7cb9598f48 | |
parent | 2f578aaf51624aa6fcff041fc7dc5c2d4dfa447f [diff] |
null_blk: remove duplicate 0 initialization In function null_add_dev() struct nullb *nullb member is allocated using kzalloc_node() which returns 0red memory. In function setup_queues() which is called from the null_add_dev(), on successful queue allocation we set the nullb->nr_queues = 0 which is not needed due to earlier use of kzalloc_node(). Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>