mbox series

[GIT] Networking

Message ID 20171103.143849.299813572595631405.davem@davemloft.net
State Accepted, archived
Delegated to: David Miller
Headers show
Series [GIT] Networking | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git

Message

David Miller Nov. 3, 2017, 5:38 a.m. UTC
Hopefully this is the last batch of networking fixes for 4.14

Fingers crossed...

1) Fix stmmac to use the proper sized OF property read, from Bhadram
   Varka.

2) Fix use after free in net scheduler tc action code, from Cong
   Wang.

3) Fix SKB control block mangling in tcp_make_synack().

4) Use proper locking in fib_dump_info(), from Florian Westphal.

5) Fix IPG encodings in systemport driver, from Florian Fainelli.

6) Fix division by zero in NV TCP congestion control module, from
   Konstantin Khlebnikov.

7) Fix use after free in nf_reject_ipv4, from Tejaswi Tanikella.

Please pull, thanks a lot!

The following changes since commit 3a99df9a3d14cd866b5516f8cba515a3bfd554ab:

  Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace (2017-11-01 16:04:27 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git 

for you to fetch changes up to 93824c80bf47ebe087414b3a40ca0ff9aab7d1fb:

  net: systemport: Correct IPG length settings (2017-11-03 14:30:02 +0900)

----------------------------------------------------------------
Anatole Denis (1):
      netfilter: nft_set_hash: disable fast_ops for 2-len keys

Bhadram Varka (1):
      stmmac: use of_property_read_u32 instead of read_u8

Cong Wang (2):
      net_sched: acquire RTNL in tc_action_net_exit()
      net_sched: hold netns refcnt for each action

David S. Miller (2):
      Merge git://git.kernel.org/.../pablo/nf
      Merge branch 'net-sched-use-after-free'

Eric Dumazet (1):
      tcp: do not mangle skb->cb[] in tcp_make_synack()

Florian Fainelli (1):
      net: systemport: Correct IPG length settings

Florian Westphal (1):
      fib: fib_dump_info can no longer use __in_dev_get_rtnl

Jeff Barnhill (1):
      net: vrf: correct FRA_L3MDEV encode type

Konstantin Khlebnikov (1):
      tcp_nv: fix division by zero in tcpnv_acked()

Tejaswi Tanikella (1):
      netfilter: nf_reject_ipv4: Fix use-after-free in send_reset

 drivers/net/ethernet/broadcom/bcmsysport.c            | 10 ++++++----
 drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c | 16 ++++++++--------
 drivers/net/vrf.c                                     |  2 +-
 include/linux/stmmac.h                                |  8 ++++----
 include/net/act_api.h                                 |  6 +++++-
 net/ipv4/fib_semantics.c                              | 16 ++++++++++------
 net/ipv4/netfilter/nf_reject_ipv4.c                   |  2 ++
 net/ipv4/tcp_nv.c                                     |  2 +-
 net/ipv4/tcp_output.c                                 |  9 ++-------
 net/netfilter/nft_set_hash.c                          |  1 -
 net/sched/act_api.c                                   |  4 ++++
 net/sched/act_bpf.c                                   |  2 +-
 net/sched/act_connmark.c                              |  2 +-
 net/sched/act_csum.c                                  |  2 +-
 net/sched/act_gact.c                                  |  2 +-
 net/sched/act_ife.c                                   |  2 +-
 net/sched/act_ipt.c                                   |  4 ++--
 net/sched/act_mirred.c                                |  2 +-
 net/sched/act_nat.c                                   |  2 +-
 net/sched/act_pedit.c                                 |  2 +-
 net/sched/act_police.c                                |  2 +-
 net/sched/act_sample.c                                |  2 +-
 net/sched/act_simple.c                                |  2 +-
 net/sched/act_skbedit.c                               |  2 +-
 net/sched/act_skbmod.c                                |  2 +-
 net/sched/act_tunnel_key.c                            |  2 +-
 net/sched/act_vlan.c                                  |  2 +-
 27 files changed, 60 insertions(+), 50 deletions(-)