From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
torvalds@linux-foundation.org, akpm@linux-foundation.org,
stable@vger.kernel.org
Subject: [ 00/23] 3.4.62-stable review
Date: Thu, 12 Sep 2013 10:44:56 -0700 [thread overview]
Message-ID: <20130912174451.748805761@linuxfoundation.org> (raw)
This is the start of the stable review cycle for the 3.4.62 release.
There are 23 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Sat Sep 14 17:44:08 UTC 2013.
Anything received after that time might be too late.
The whole patch series can be found in one patch at:
kernel.org/pub/linux/kernel/v3.0/stable-review/patch-3.4.62-rc1.gz
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linux 3.4.62-rc1
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Revert "KVM: X86 emulator: fix source operand decoding for 8bit mov[zs]x instructions"
Geert Uytterhoeven <geert@linux-m68k.org>
m32r: make memset() global for CONFIG_KERNEL_BZIP2=y
Geert Uytterhoeven <geert@linux-m68k.org>
m32r: add memcpy() for CONFIG_KERNEL_GZIP=y
Geert Uytterhoeven <geert@linux-m68k.org>
m32r: consistently use "suffix-$(...)"
Ying Xue <ying.xue@windriver.com>
tipc: fix lockdep warning during bearer initialization
Jason Wang <jasowang@redhat.com>
macvtap: do not zerocopy if iov needs more pages than MAX_SKB_FRAGS
Jason Wang <jasowang@redhat.com>
vhost: zerocopy: poll vq in zerocopy callback
Daniel Borkmann <dborkman@redhat.com>
net: ipv6: tcp: fix potential use after free in tcp_v6_do_rcv
Jiri Bohac <jbohac@suse.cz>
ICMPv6: treat dest unreachable codes 5 and 6 as EACCES, not EPROTO
Daniel Borkmann <dborkman@redhat.com>
net: bridge: convert MLDv2 Query MRC into msecs_to_jiffies for max_delay
Thomas Graf <tgraf@suug.ch>
ipv6: Don't depend on per socket memory for neighbour discovery messages
Hannes Frederic Sowa <hannes@stressinduktion.org>
ipv6: drop packets with multiple fragmentation headers
Hannes Frederic Sowa <hannes@stressinduktion.org>
ipv6: remove max_addresses check from ipv6_create_tempaddr
Dan Carpenter <dan.carpenter@oracle.com>
tun: signedness bug in tun_get_user()
Dave Jones <davej@redhat.com>
8139cp: Fix skb leak in rx_status_loop failure path.
Hannes Frederic Sowa <hannes@stressinduktion.org>
ipv6: don't stop backtracking in fib6_lookup_1 if subtree does not match
Eric Dumazet <edumazet@google.com>
tcp: cubic: fix bug in bictcp_acked()
Eric Dumazet <edumazet@google.com>
tcp: cubic: fix overflow error in bictcp_update()
Eric Dumazet <edumazet@google.com>
fib_trie: remove potential out of bound access
Veaceslav Falico <vfalico@redhat.com>
bonding: modify only neigh_parms owned by us
Veaceslav Falico <vfalico@redhat.com>
neighbour: populate neigh_parms on alloc before calling ndo_neigh_setup
Roman Gushchin <klamm@yandex-team.ru>
net: check net.core.somaxconn sysctl values
stephen hemminger <stephen@networkplumber.org>
htb: fix sign extension bug
-------------
Diffstat:
Makefile | 4 +--
arch/m32r/boot/compressed/Makefile | 6 ++--
arch/m32r/boot/compressed/misc.c | 12 ++++++-
arch/x86/kvm/emulate.c | 4 ---
drivers/net/bonding/bond_main.c | 8 ++++-
drivers/net/ethernet/realtek/8139cp.c | 1 +
drivers/net/macvtap.c | 62 +++++++++++++++++++++--------------
drivers/net/tun.c | 6 ++--
drivers/vhost/vhost.c | 1 +
include/linux/icmpv6.h | 2 ++
include/linux/ipv6.h | 1 +
net/bridge/br_multicast.c | 3 +-
net/core/neighbour.c | 10 +++---
net/core/sysctl_net_core.c | 7 +++-
net/ipv4/fib_trie.c | 5 +--
net/ipv4/tcp_cubic.c | 12 ++++---
net/ipv6/addrconf.c | 10 +++---
net/ipv6/icmp.c | 10 +++++-
net/ipv6/ip6_fib.c | 16 ++++++---
net/ipv6/ndisc.c | 16 +++++----
net/ipv6/reassembly.c | 5 +++
net/ipv6/tcp_ipv6.c | 2 +-
net/sched/sch_htb.c | 2 +-
net/tipc/eth_media.c | 15 ++++++++-
24 files changed, 146 insertions(+), 74 deletions(-)
next reply other threads:[~2013-09-12 17:44 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-12 17:44 Greg Kroah-Hartman [this message]
2013-09-12 17:44 ` [ 01/23] htb: fix sign extension bug Greg Kroah-Hartman
2013-09-13 5:04 ` [00/23] 3.4.62-stable review Guenter Roeck
2013-09-13 12:35 ` Greg Kroah-Hartman
2013-09-12 17:44 ` [ 02/23] net: check net.core.somaxconn sysctl values Greg Kroah-Hartman
2013-09-12 17:44 ` [ 03/23] neighbour: populate neigh_parms on alloc before calling ndo_neigh_setup Greg Kroah-Hartman
2013-09-12 17:45 ` [ 04/23] bonding: modify only neigh_parms owned by us Greg Kroah-Hartman
2013-09-12 17:45 ` [ 05/23] fib_trie: remove potential out of bound access Greg Kroah-Hartman
2013-09-12 17:45 ` [ 06/23] tcp: cubic: fix overflow error in bictcp_update() Greg Kroah-Hartman
2013-09-12 17:45 ` [ 07/23] tcp: cubic: fix bug in bictcp_acked() Greg Kroah-Hartman
2013-09-12 17:45 ` [ 08/23] ipv6: dont stop backtracking in fib6_lookup_1 if subtree does not match Greg Kroah-Hartman
2013-09-12 17:45 ` [ 09/23] 8139cp: Fix skb leak in rx_status_loop failure path Greg Kroah-Hartman
2013-09-12 17:45 ` [ 10/23] tun: signedness bug in tun_get_user() Greg Kroah-Hartman
2013-09-12 17:45 ` [ 11/23] ipv6: remove max_addresses check from ipv6_create_tempaddr Greg Kroah-Hartman
2013-09-12 17:45 ` [ 12/23] ipv6: drop packets with multiple fragmentation headers Greg Kroah-Hartman
2013-09-12 17:45 ` [ 13/23] ipv6: Dont depend on per socket memory for neighbour discovery messages Greg Kroah-Hartman
2013-09-12 17:45 ` [ 14/23] net: bridge: convert MLDv2 Query MRC into msecs_to_jiffies for max_delay Greg Kroah-Hartman
2013-09-12 17:45 ` [ 15/23] ICMPv6: treat dest unreachable codes 5 and 6 as EACCES, not EPROTO Greg Kroah-Hartman
2013-09-12 17:45 ` [ 16/23] net: ipv6: tcp: fix potential use after free in tcp_v6_do_rcv Greg Kroah-Hartman
2013-09-12 17:45 ` [ 17/23] vhost: zerocopy: poll vq in zerocopy callback Greg Kroah-Hartman
2013-09-12 17:45 ` [ 18/23] macvtap: do not zerocopy if iov needs more pages than MAX_SKB_FRAGS Greg Kroah-Hartman
2013-09-12 17:45 ` [ 19/23] tipc: fix lockdep warning during bearer initialization Greg Kroah-Hartman
2013-09-12 17:45 ` [ 20/23] m32r: consistently use "suffix-$(...)" Greg Kroah-Hartman
2013-09-12 17:45 ` [ 21/23] m32r: add memcpy() for CONFIG_KERNEL_GZIP=y Greg Kroah-Hartman
2013-09-12 17:45 ` [ 22/23] m32r: make memset() global for CONFIG_KERNEL_BZIP2=y Greg Kroah-Hartman
2013-09-12 17:45 ` [ 23/23] Revert "KVM: X86 emulator: fix source operand decoding for 8bit mov[zs]x instructions" Greg Kroah-Hartman
2013-09-13 23:02 ` [ 00/23] 3.4.62-stable review Shuah Khan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130912174451.748805761@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=stable@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).