mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	usb: cdc-wdm: Fix a sleep-in-atomic-context bug in service_outstanding_interrupt()
wdm_in_callback() is a completion handler function for the USB driver. So it should not sleep. But it calls service_outstanding_interrupt(), which calls usb_submit_urb() with GFP_KERNEL. To fix this bug, GFP_KERNEL is replaced with GFP_ATOMIC. This bug is found by my static analysis tool DSAC. Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com> Cc: stable <stable@vger.kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
		
							parent
							
								
									bc8acc214d
								
							
						
					
					
						commit
						6e22e3af7b
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -460,7 +460,7 @@ static int service_outstanding_interrupt(struct wdm_device *desc)
 | 
			
		|||
 | 
			
		||||
	set_bit(WDM_RESPONDING, &desc->flags);
 | 
			
		||||
	spin_unlock_irq(&desc->iuspin);
 | 
			
		||||
	rv = usb_submit_urb(desc->response, GFP_KERNEL);
 | 
			
		||||
	rv = usb_submit_urb(desc->response, GFP_ATOMIC);
 | 
			
		||||
	spin_lock_irq(&desc->iuspin);
 | 
			
		||||
	if (rv) {
 | 
			
		||||
		dev_err(&desc->intf->dev,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue