]> Git Repo - J-linux.git/commitdiff
usbnet: sanity check for maxpacket
authorOliver Neukum <[email protected]>
Thu, 21 Oct 2021 12:29:44 +0000 (14:29 +0200)
committerJakub Kicinski <[email protected]>
Thu, 21 Oct 2021 13:44:53 +0000 (06:44 -0700)
maxpacket of 0 makes no sense and oopses as we need to divide
by it. Give up.

V2: fixed typo in log and stylistic issues

Signed-off-by: Oliver Neukum <[email protected]>
Reported-by: [email protected]
Reviewed-by: Johan Hovold <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
drivers/net/usb/usbnet.c

index 840c1c2ab16afa192b15b17760de1f0dd384aed5..80432ee0ce694773477acfda06cf40a3639ba58f 100644 (file)
@@ -1788,6 +1788,10 @@ usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)
        if (!dev->rx_urb_size)
                dev->rx_urb_size = dev->hard_mtu;
        dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1);
+       if (dev->maxpacket == 0) {
+               /* that is a broken device */
+               goto out4;
+       }
 
        /* let userspace know we have a random address */
        if (ether_addr_equal(net->dev_addr, node_id))
This page took 0.054914 seconds and 4 git commands to generate.