[PATCH] net: qmi_wwan: Sierra Wireless MC73xx -> Sierra Wireless MC7304/MC7354

2015-08-31 Thread David Ward
Other Sierra Wireless MC73xx devices exist, with different USB IDs. Cc: Bjørn Mork <bj...@mork.no> Signed-off-by: David Ward <david.w...@ll.mit.edu> --- drivers/net/usb/qmi_wwan.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/usb/qmi_wwan.c b

[PATCH] net: qmi_wwan: add HP lt4111 LTE/EV-DO/HSPA+ Gobi 4G Module

2015-08-15 Thread David Ward
This is an HP-branded Sierra Wireless EM7355: https://bugzilla.redhat.com/show_bug.cgi?id=1223646#c2 Signed-off-by: David Ward david.w...@ll.mit.edu --- drivers/net/usb/qmi_wwan.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net

[PATCH] net/ipv4: suppress NETDEV_UP notification on address lifetime update

2015-07-26 Thread David Ward
that outbound traffic is sent only through the tunnel (and disconnects if any further route changes are detected via netlink). Signed-off-by: David Ward david.w...@ll.mit.edu --- net/ipv4/devinet.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/net/ipv4/devinet.c b/net/ipv4

[PATCH iproute2 08/10] tc: gred: Handle unsigned values properly in option parsing/printing

2015-05-18 Thread David Ward
DPs, def_DP, and DP are unsigned values that are sent and received in TCA_GRED_* netlink attributes; handle them properly when they are parsed or printed. Use MAX_DPs as the initial value for def_DP and DP, and fix the operator used for bounds checking them. Signed-off-by: David Ward david.w