lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20221213174810.553b0196@kernel.org> Date: Tue, 13 Dec 2022 17:48:10 -0800 From: Jakub Kicinski <kuba@...nel.org> To: "Seija K." <doremylover123@...il.com> Cc: Bjørn Mork <bjorn@...k.no>, "David S. Miller" <davem@...emloft.net>, Eric Dumazet <edumazet@...gle.com>, Paolo Abeni <pabeni@...hat.com>, netdev@...r.kernel.org, linux-usb@...r.kernel.org, linux-kernel@...r.kernel.org Subject: Re: [PATCH] net: Fix for packets being rejected in the xHCI controller's ring buffer On Tue, 13 Dec 2022 12:40:52 -0500 Seija K. wrote: > Signed-off-by: Seija Kijin <doremylover123@...il.com> You need to update the Author / the From field as well as the sign-off. > No empty lines between tags. > Co-Authored-By: TarAldarion <gildeap@....ie> We need sign-offs for co-authors. Please take the "must be your real legal name" requirement seriously, we mean it. > diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c > index 554d4e2a84a4..39db53a74b5a 100644 > --- a/drivers/net/usb/qmi_wwan.c > +++ b/drivers/net/usb/qmi_wwan.c > @@ -842,6 +842,13 @@ static int qmi_wwan_bind(struct usbnet *dev, > struct usb_interface *intf) > } > dev->net->netdev_ops = &qmi_wwan_netdev_ops; > dev->net->sysfs_groups[0] = &qmi_wwan_sysfs_attr_group; > + /* LTE Networks don't always respect their own MTU on the receiving side; > + * e.g. AT&T pushes 1430 MTU but still allows 1500 byte packets from > + * far-end networks. Make the receive buffer large enough to accommodate > + * them, and add four bytes so MTU does not equal MRU on network > + * with 1500 MTU. Otherwise, usbnet_change_mtu() will change both. > + */ > + dev->rx_urb_size = ETH_DATA_LEN + 4; > err: > return status; The patch is still pooped, please try with git send-email.
Powered by blists - more mailing lists