Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/linux-patches:4.14 commit in: /
Date: Thu, 27 Jun 2019 11:09:06
Message-Id: 1561633721.605ef7d16bf79a209ef374ac98de7d1c2ff6e72a.mpagano@gentoo
1 commit: 605ef7d16bf79a209ef374ac98de7d1c2ff6e72a
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 27 11:08:41 2019 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 27 11:08:41 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=605ef7d1
7
8 Linux patch 4.14.131
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11
12 0000_README | 4 ++++
13 1130_linux-4.14.131.patch | 26 ++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/0000_README b/0000_README
17 index 5805bb9..562acb4 100644
18 --- a/0000_README
19 +++ b/0000_README
20 @@ -563,6 +563,10 @@ Patch: 1129_linux-4.14.130.patch
21 From: https://www.kernel.org
22 Desc: Linux 4.14.130
23
24 +Patch: 1130_linux-4.14.131.patch
25 +From: https://www.kernel.org
26 +Desc: Linux 4.14.131
27 +
28 Patch: 1500_XATTR_USER_PREFIX.patch
29 From: https://bugs.gentoo.org/show_bug.cgi?id=470644
30 Desc: Support for namespace user.pax.* on tmpfs.
31
32 diff --git a/1130_linux-4.14.131.patch b/1130_linux-4.14.131.patch
33 new file mode 100644
34 index 0000000..167fb1b
35 --- /dev/null
36 +++ b/1130_linux-4.14.131.patch
37 @@ -0,0 +1,26 @@
38 +diff --git a/Makefile b/Makefile
39 +index 9d0715c300b1..275343cf27f7 100644
40 +--- a/Makefile
41 ++++ b/Makefile
42 +@@ -1,7 +1,7 @@
43 + # SPDX-License-Identifier: GPL-2.0
44 + VERSION = 4
45 + PATCHLEVEL = 14
46 +-SUBLEVEL = 130
47 ++SUBLEVEL = 131
48 + EXTRAVERSION =
49 + NAME = Petit Gorille
50 +
51 +diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c
52 +index a8772e11dc1c..a5960b9b6741 100644
53 +--- a/net/ipv4/tcp_output.c
54 ++++ b/net/ipv4/tcp_output.c
55 +@@ -1274,7 +1274,7 @@ int tcp_fragment(struct sock *sk, struct sk_buff *skb, u32 len,
56 + if (nsize < 0)
57 + nsize = 0;
58 +
59 +- if (unlikely((sk->sk_wmem_queued >> 1) > sk->sk_sndbuf)) {
60 ++ if (unlikely((sk->sk_wmem_queued >> 1) > sk->sk_sndbuf + 0x20000)) {
61 + NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPWQUEUETOOBIG);
62 + return -ENOMEM;
63 + }