mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	blk-lib: don't check bdev_get_queue() NULL check
Based on the comment present in the bdev_get_queue() bdev->bd_queue can never be NULL. Remove the NULL check for the local variable q that is set from bdev_get_queue() for discard, write_same, and write_zeroes. Signed-off-by: Chaitanya Kulkarni <kch@nvidia.com> Reviewed-by: Ming Lei <ming.lei@redhat.com> Link: https://lore.kernel.org/r/20220215115247.11717-2-kch@nvidia.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
		
							parent
							
								
									69591a402d
								
							
						
					
					
						commit
						ec9fd2a13d
					
				
					 1 changed files with 0 additions and 14 deletions
				
			
		| 
						 | 
					@ -19,9 +19,6 @@ int __blkdev_issue_discard(struct block_device *bdev, sector_t sector,
 | 
				
			||||||
	unsigned int op;
 | 
						unsigned int op;
 | 
				
			||||||
	sector_t bs_mask, part_offset = 0;
 | 
						sector_t bs_mask, part_offset = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!q)
 | 
					 | 
				
			||||||
		return -ENXIO;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (bdev_read_only(bdev))
 | 
						if (bdev_read_only(bdev))
 | 
				
			||||||
		return -EPERM;
 | 
							return -EPERM;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -156,9 +153,6 @@ static int __blkdev_issue_write_same(struct block_device *bdev, sector_t sector,
 | 
				
			||||||
	struct bio *bio = *biop;
 | 
						struct bio *bio = *biop;
 | 
				
			||||||
	sector_t bs_mask;
 | 
						sector_t bs_mask;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!q)
 | 
					 | 
				
			||||||
		return -ENXIO;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (bdev_read_only(bdev))
 | 
						if (bdev_read_only(bdev))
 | 
				
			||||||
		return -EPERM;
 | 
							return -EPERM;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -232,10 +226,6 @@ static int __blkdev_issue_write_zeroes(struct block_device *bdev,
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct bio *bio = *biop;
 | 
						struct bio *bio = *biop;
 | 
				
			||||||
	unsigned int max_write_zeroes_sectors;
 | 
						unsigned int max_write_zeroes_sectors;
 | 
				
			||||||
	struct request_queue *q = bdev_get_queue(bdev);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (!q)
 | 
					 | 
				
			||||||
		return -ENXIO;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (bdev_read_only(bdev))
 | 
						if (bdev_read_only(bdev))
 | 
				
			||||||
		return -EPERM;
 | 
							return -EPERM;
 | 
				
			||||||
| 
						 | 
					@ -284,14 +274,10 @@ static int __blkdev_issue_zero_pages(struct block_device *bdev,
 | 
				
			||||||
		sector_t sector, sector_t nr_sects, gfp_t gfp_mask,
 | 
							sector_t sector, sector_t nr_sects, gfp_t gfp_mask,
 | 
				
			||||||
		struct bio **biop)
 | 
							struct bio **biop)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct request_queue *q = bdev_get_queue(bdev);
 | 
					 | 
				
			||||||
	struct bio *bio = *biop;
 | 
						struct bio *bio = *biop;
 | 
				
			||||||
	int bi_size = 0;
 | 
						int bi_size = 0;
 | 
				
			||||||
	unsigned int sz;
 | 
						unsigned int sz;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!q)
 | 
					 | 
				
			||||||
		return -ENXIO;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (bdev_read_only(bdev))
 | 
						if (bdev_read_only(bdev))
 | 
				
			||||||
		return -EPERM;
 | 
							return -EPERM;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue