diff options
| author | Chaitanya Kulkarni <kch@nvidia.com> | 2022-02-22 07:28:51 -0800 | 
|---|---|---|
| committer | Jens Axboe <axboe@kernel.dk> | 2022-02-27 14:49:49 -0700 | 
| commit | c90b6b50b42dfdfeb27b02e670e812b69ff364f5 (patch) | |
| tree | 45bc5a2fea356e5d6151d60dc1054437d39cd70b | |
| parent | 3d3472f3ed419fe1a9d3f881a4905fa8e03d750c (diff) | |
null_blk: remove hardcoded null_alloc_page() param
Only caller of null_alloc_page() is null_insert_page() unconditionally
sets only parameter to GFP_NOIO and that is statically hard-coded in
null_blk. There is no point in having statically hardcoded function
parameter.
Remove the unnecessary parameter gfp_flags and adjust the code, so it
can retain existing behavior null_alloc_page() with GFP_NOIO.
Signed-off-by: Chaitanya Kulkarni <kch@nvidia.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20220222152852.26043-2-kch@nvidia.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
| -rw-r--r-- | drivers/block/null_blk/main.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/block/null_blk/main.c b/drivers/block/null_blk/main.c index 29e183719e77..80f9a6ba376d 100644 --- a/drivers/block/null_blk/main.c +++ b/drivers/block/null_blk/main.c @@ -777,15 +777,15 @@ static void null_complete_rq(struct request *rq)  	end_cmd(blk_mq_rq_to_pdu(rq));  } -static struct nullb_page *null_alloc_page(gfp_t gfp_flags) +static struct nullb_page *null_alloc_page(void)  {  	struct nullb_page *t_page; -	t_page = kmalloc(sizeof(struct nullb_page), gfp_flags); +	t_page = kmalloc(sizeof(struct nullb_page), GFP_NOIO);  	if (!t_page)  		goto out; -	t_page->page = alloc_pages(gfp_flags, 0); +	t_page->page = alloc_pages(GFP_NOIO, 0);  	if (!t_page->page)  		goto out_freepage; @@ -932,7 +932,7 @@ static struct nullb_page *null_insert_page(struct nullb *nullb,  	spin_unlock_irq(&nullb->lock); -	t_page = null_alloc_page(GFP_NOIO); +	t_page = null_alloc_page();  	if (!t_page)  		goto out_lock; | 
