Lines Matching refs:GFP_KERNEL
346 buf = kmalloc(count, GFP_KERNEL); in wdm_write()
412 rv = usb_submit_urb(desc->command, GFP_KERNEL); in wdm_write()
456 rv = usb_submit_urb(desc->response, GFP_KERNEL); in clear_wdm_read_flag()
644 rv = usb_submit_urb(desc->validity, GFP_KERNEL); in wdm_open()
742 rv = usb_submit_urb(desc->response, GFP_KERNEL); in wdm_rxwork()
761 desc = kzalloc(sizeof(struct wdm_device), GFP_KERNEL); in wdm_create()
781 desc->orq = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL); in wdm_create()
784 desc->irq = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL); in wdm_create()
788 desc->validity = usb_alloc_urb(0, GFP_KERNEL); in wdm_create()
792 desc->response = usb_alloc_urb(0, GFP_KERNEL); in wdm_create()
796 desc->command = usb_alloc_urb(0, GFP_KERNEL); in wdm_create()
800 desc->ubuf = kmalloc(desc->wMaxCommand, GFP_KERNEL); in wdm_create()
804 desc->sbuf = kmalloc(desc->wMaxPacketSize, GFP_KERNEL); in wdm_create()
808 desc->inbuf = kmalloc(desc->wMaxCommand, GFP_KERNEL); in wdm_create()