All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8 v3] Stable material from OpenWrt for v4.9.y
@ 2019-02-14 13:23 Linus Walleij
  2019-02-14 13:23 ` [PATCH 1/8 v3] bridge: multicast to unicast Linus Walleij
                   ` (8 more replies)
  0 siblings, 9 replies; 17+ messages in thread
From: Linus Walleij @ 2019-02-14 13:23 UTC (permalink / raw)
  To: Greg Kroah-Hartman, stable, openwrt-devel
  Cc: David S . Miller, Eric Dumazet, Liping Zhang, John Youn,
	Rafał Miłecki, James Hughes, Felix Fietkau,
	Linus Walleij

This is a series of patches used in OpenWrt's v4.9 backports
that seem to be of generic interest to v4.9.y

For the remaining patches I cherry-picked the upstream
commits except for (8/8)
"netfilter: nf_tables: fix mismatch in big-endian system"
where I used OpenWrt's backport.

ChangeLog v2->v3:
- Add Signed-off-by to all patches to reflect delivery
  path.

ChangeLog v1->v2:

- I have dropped two patches from the series: one was to be
  applied also to v4.14.y and one was to be applied also to
  v4.14.y and v4.19.y. The rest are for v4.9.y as they have
  been merged upstream between v4.9 and v4.14.

- The two dropped patches have been sent out separately.

- I have added the "commit nnnnn upstream." message on the
  first line of each commit message to fit stable standards.

Upstream commits:

The list of upstream commits in patch order:
6db6f0eae6052b70885562e1733896647ec1d807 ("bridge: multicast to unicast")
e9156cd26a495a18706e796f02a81fee41ec14f4 ("smsc95xx: Use skb_cow_head to deal with cloned skbs")
6bc6895bdd6744e0136eaa4a11fbdb20a7db4e40 ("ch9200: use skb_cow_head() to deal with cloned skbs")
39fba7835aacda65284a86e611774cbba71dac20 ("kaweth: use skb_cow_head() to deal with cloned skbs")
854826c9d526fd81077742c3b000e3f7fcaef3ce ("ubifs: Drop softlimit and delta fields from struct ubifs_wbuf")
1b7fc2c0069f3864a3dda15430b7aded31c0bfcc ("ubifs: Use dirty_writeback_interval value for wbuf timer")
cd4b1e34655d46950c065d9284b596cd8d7b28cd ("usb: dwc2: Remove unnecessary kfree")
10596608c4d62cb8c1c2b806debcbd32fe657e71 ("netfilter: nf_tables: fix mismatch in big-endian system")

Eric Dumazet (2):
  ch9200: use skb_cow_head() to deal with cloned skbs
  kaweth: use skb_cow_head() to deal with cloned skbs

Felix Fietkau (1):
  bridge: multicast to unicast

James Hughes (1):
  smsc95xx: Use skb_cow_head to deal with cloned skbs

John Youn (1):
  usb: dwc2: Remove unnecessary kfree

Liping Zhang (1):
  netfilter: nf_tables: fix mismatch in big-endian system

Rafał Miłecki (2):
  ubifs: Drop softlimit and delta fields from struct ubifs_wbuf
  ubifs: Use dirty_writeback_interval value for wbuf timer

 drivers/net/usb/ch9200.c            |  9 +--
 drivers/net/usb/kaweth.c            | 18 ++----
 drivers/net/usb/smsc95xx.c          | 12 ++--
 drivers/usb/dwc2/hcd.c              |  1 -
 fs/ubifs/io.c                       | 18 +++---
 fs/ubifs/ubifs.h                    |  9 ---
 include/linux/if_bridge.h           |  1 +
 include/net/netfilter/nf_tables.h   | 29 ++++++++++
 include/uapi/linux/if_link.h        |  1 +
 net/bridge/br_forward.c             | 39 ++++++++++++-
 net/bridge/br_mdb.c                 |  2 +-
 net/bridge/br_multicast.c           | 90 +++++++++++++++++++++--------
 net/bridge/br_netlink.c             |  5 ++
 net/bridge/br_private.h             |  3 +-
 net/bridge/br_sysfs_if.c            |  2 +
 net/ipv4/netfilter/nft_masq_ipv4.c  |  8 +--
 net/ipv4/netfilter/nft_redir_ipv4.c |  8 +--
 net/ipv6/netfilter/nft_masq_ipv6.c  |  8 +--
 net/ipv6/netfilter/nft_redir_ipv6.c |  8 +--
 net/netfilter/nft_ct.c              | 10 ++--
 net/netfilter/nft_meta.c            | 42 +++++++-------
 net/netfilter/nft_nat.c             |  8 +--
 22 files changed, 214 insertions(+), 117 deletions(-)

-- 
2.20.1


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2019-02-18 12:45 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-14 13:23 [PATCH 0/8 v3] Stable material from OpenWrt for v4.9.y Linus Walleij
2019-02-14 13:23 ` [PATCH 1/8 v3] bridge: multicast to unicast Linus Walleij
2019-02-17 18:16   ` Sasha Levin
2019-02-17 21:08     ` Linus Walleij
2019-02-14 13:23 ` [PATCH 2/8 v3] smsc95xx: Use skb_cow_head to deal with cloned skbs Linus Walleij
2019-02-14 13:23 ` [PATCH 3/8 v3] ch9200: use skb_cow_head() " Linus Walleij
2019-02-14 13:23 ` [PATCH 4/8 v3] kaweth: " Linus Walleij
2019-02-14 13:24 ` [PATCH 5/8 v3] ubifs: Drop softlimit and delta fields from struct ubifs_wbuf Linus Walleij
2019-02-17 18:16   ` Sasha Levin
2019-02-17 20:57     ` Linus Walleij
2019-02-14 13:24 ` [PATCH 6/8 v3] ubifs: Use dirty_writeback_interval value for wbuf timer Linus Walleij
2019-02-17 18:18   ` Sasha Levin
2019-02-17 18:49     ` Richard Weinberger
2019-02-17 20:56     ` Linus Walleij
2019-02-14 13:24 ` [PATCH 7/8 v3] usb: dwc2: Remove unnecessary kfree Linus Walleij
2019-02-14 13:24 ` [PATCH 8/8 v3] netfilter: nf_tables: fix mismatch in big-endian system Linus Walleij
2019-02-18 12:45 ` [PATCH 0/8 v3] Stable material from OpenWrt for v4.9.y Greg Kroah-Hartman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.