commit: f4e09508f12dda455e4d930046da5f081ada07e6 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org> AuthorDate: Wed Nov 11 15:36:16 2020 +0000 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org> CommitDate: Wed Nov 11 15:36:16 2020 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=f4e09508
Linux patch 4.14.206 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org> 0000_README | 4 ++++ 1205_linux-4.14.206.patch | 29 +++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/0000_README b/0000_README index c1add37..de30ef7 100644 --- a/0000_README +++ b/0000_README @@ -863,6 +863,10 @@ Patch: 1204_linux-4.14.205.patch From: https://www.kernel.org Desc: Linux 4.14.205 +Patch: 1205_linux-4.14.206.patch +From: https://www.kernel.org +Desc: Linux 4.14.206 + Patch: 1500_XATTR_USER_PREFIX.patch From: https://bugs.gentoo.org/show_bug.cgi?id=470644 Desc: Support for namespace user.pax.* on tmpfs. diff --git a/1205_linux-4.14.206.patch b/1205_linux-4.14.206.patch new file mode 100644 index 0000000..00b4b80 --- /dev/null +++ b/1205_linux-4.14.206.patch @@ -0,0 +1,29 @@ +diff --git a/Makefile b/Makefile +index fff3ca75d35a2..2d5ec8b7bcf5f 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,7 +1,7 @@ + # SPDX-License-Identifier: GPL-2.0 + VERSION = 4 + PATCHLEVEL = 14 +-SUBLEVEL = 205 ++SUBLEVEL = 206 + EXTRAVERSION = + NAME = Petit Gorille + +diff --git a/drivers/powercap/powercap_sys.c b/drivers/powercap/powercap_sys.c +index 5b10b50f8686f..5c064df7d81f1 100644 +--- a/drivers/powercap/powercap_sys.c ++++ b/drivers/powercap/powercap_sys.c +@@ -379,9 +379,9 @@ static void create_power_zone_common_attributes( + &dev_attr_max_energy_range_uj.attr; + if (power_zone->ops->get_energy_uj) { + if (power_zone->ops->reset_energy_uj) +- dev_attr_energy_uj.attr.mode = S_IWUSR | S_IRUGO; ++ dev_attr_energy_uj.attr.mode = S_IWUSR | S_IRUSR; + else +- dev_attr_energy_uj.attr.mode = S_IRUGO; ++ dev_attr_energy_uj.attr.mode = S_IRUSR; + power_zone->zone_dev_attrs[count++] = + &dev_attr_energy_uj.attr; + }
