mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-18 22:14:16 +00:00 
			
		
		
		
	blk-mq: Remove unnecessary local variable
Remove unnecessary local variable 'ret' in blk_mq_dispatch_hctx_list(). Signed-off-by: Baolin Wang <baolin.wang@linux.alibaba.com> Reviewed-by: Ming Lei <ming.lei@redhat.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
		
							parent
							
								
									21cf866145
								
							
						
					
					
						commit
						106e71c512
					
				
					 1 changed files with 1 additions and 3 deletions
				
			
		|  | @ -96,7 +96,6 @@ static bool blk_mq_dispatch_hctx_list(struct list_head *rq_list) | |||
| 	struct request *rq; | ||||
| 	LIST_HEAD(hctx_list); | ||||
| 	unsigned int count = 0; | ||||
| 	bool ret; | ||||
| 
 | ||||
| 	list_for_each_entry(rq, rq_list, queuelist) { | ||||
| 		if (rq->mq_hctx != hctx) { | ||||
|  | @ -108,8 +107,7 @@ static bool blk_mq_dispatch_hctx_list(struct list_head *rq_list) | |||
| 	list_splice_tail_init(rq_list, &hctx_list); | ||||
| 
 | ||||
| dispatch: | ||||
| 	ret = blk_mq_dispatch_rq_list(hctx, &hctx_list, count); | ||||
| 	return ret; | ||||
| 	return blk_mq_dispatch_rq_list(hctx, &hctx_list, count); | ||||
| } | ||||
| 
 | ||||
| #define BLK_MQ_BUDGET_DELAY	3		/* ms units */ | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Baolin Wang
						Baolin Wang