commit: ef63aa3351ac2e98c27250c7ebaa8cf3c74d10e9 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org> AuthorDate: Wed Nov 11 15:52:23 2020 +0000 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org> CommitDate: Wed Nov 11 15:52:23 2020 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=ef63aa33
Linux patch 5.9.8 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org> 0000_README | 4 ++-- 1007_linux-5.9.8.patch | 29 +++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/0000_README b/0000_README index c95c981..4d7ac31 100644 --- a/0000_README +++ b/0000_README @@ -71,9 +71,9 @@ Patch: 1006_linux-5.9.7.patch From: http://www.kernel.org Desc: Linux 5.9.7 -Patch: 1006_linux-5.9.7.patch +Patch: 1007_linux-5.9.8.patch From: http://www.kernel.org -Desc: Linux 5.9.7 +Desc: Linux 5.9.8 Patch: 1500_XATTR_USER_PREFIX.patch From: https://bugs.gentoo.org/show_bug.cgi?id=470644 diff --git a/1007_linux-5.9.8.patch b/1007_linux-5.9.8.patch new file mode 100644 index 0000000..1a09c0a --- /dev/null +++ b/1007_linux-5.9.8.patch @@ -0,0 +1,29 @@ +diff --git a/Makefile b/Makefile +index 035d86a0d291d..ac292d6dd2627 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,7 +1,7 @@ + # SPDX-License-Identifier: GPL-2.0 + VERSION = 5 + PATCHLEVEL = 9 +-SUBLEVEL = 7 ++SUBLEVEL = 8 + EXTRAVERSION = + NAME = Kleptomaniac Octopus + +diff --git a/drivers/powercap/powercap_sys.c b/drivers/powercap/powercap_sys.c +index f808c5fa9838c..3f0b8e2ef3d46 100644 +--- a/drivers/powercap/powercap_sys.c ++++ b/drivers/powercap/powercap_sys.c +@@ -367,9 +367,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; + }