]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
HID: usbkbd: Avoid GFP_ATOMIC when GFP_KERNEL is possible
authorHyeonggon Yoo <42.hyeyoo@gmail.com>
Sat, 29 May 2021 10:03:57 +0000 (19:03 +0900)
committerJiri Kosina <jkosina@suse.cz>
Tue, 15 Jun 2021 08:50:36 +0000 (10:50 +0200)
usb_kbd_alloc_mem is called in usb_kbd_probe, which is
not in atomic context. So constraints can be relaxed here.

Use GFP_KERNEL instead of GFP_ATOMIC.

Signed-off-by: Hyeonggon Yoo <42.hyeyoo@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/usbhid/usbkbd.c

index e22434dfc9ef0b352cbc71003a0a02e27f8d6477..df02002066cef4860f977cb61d2e16b3e6cb39c8 100644 (file)
@@ -239,11 +239,11 @@ static int usb_kbd_alloc_mem(struct usb_device *dev, struct usb_kbd *kbd)
                return -1;
        if (!(kbd->led = usb_alloc_urb(0, GFP_KERNEL)))
                return -1;
-       if (!(kbd->new = usb_alloc_coherent(dev, 8, GFP_ATOMIC, &kbd->new_dma)))
+       if (!(kbd->new = usb_alloc_coherent(dev, 8, GFP_KERNEL, &kbd->new_dma)))
                return -1;
        if (!(kbd->cr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL)))
                return -1;
-       if (!(kbd->leds = usb_alloc_coherent(dev, 1, GFP_ATOMIC, &kbd->leds_dma)))
+       if (!(kbd->leds = usb_alloc_coherent(dev, 1, GFP_KERNEL, &kbd->leds_dma)))
                return -1;
 
        return 0;