I'm announcing the release of the 5.9.8 kernel.
Only upgrade if you are vunerable to this Intel advisory: https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00...
Hint, if you are using SGX, then upgrade. And then possibly reconsider the decisions you have recently made that caused you to write special code to use that crazy thing. Personally, it still feels like a solution in search of a problem.
If not, you should be fine, no need to upgrade. Unless you really want to, and the, great, please do so, it's fun!
The updated 5.9.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-5.9.y and can be browsed at the normal kernel.org git web browser: https://git.kernel.org/?p=linux/kernel/git/stable/linux-stable.git%3Ba=summa...
thanks,
greg k-h
------------
Makefile | 2 +- drivers/powercap/powercap_sys.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
Greg Kroah-Hartman (1): Linux 5.9.8
Len Brown (1): powercap: restrict energy meter to root access
diff --git a/Makefile b/Makefile index 035d86a0d291..ac292d6dd262 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 f808c5fa9838..3f0b8e2ef3d4 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; }
Greg Kroah-Hartman gregkh@linuxfoundation.org on Tue, 2020/11/10 21:56:
I'm announcing the release of the 5.9.8 kernel.
This is not yet linked on kernel.org - same goes for lts version 5.4.77. I guess this is not by intention, no?
On Wed, Nov 11, 2020 at 03:36:04PM +0100, Christian Hesse wrote:
Greg Kroah-Hartman gregkh@linuxfoundation.org on Tue, 2020/11/10 21:56:
I'm announcing the release of the 5.9.8 kernel.
This is not yet linked on kernel.org - same goes for lts version 5.4.77. I guess this is not by intention, no?
Strange, both are indeed not listed on kernel.org but are available in the download directory and can be retrieved from there:
https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/ https://cdn.kernel.org/pub/linux/kernel/v5.x/
Maybe it's just the bot that updates the front page that was stopped.
Willy
On Wed, Nov 11, 2020 at 03:36:04PM +0100, Christian Hesse wrote:
Greg Kroah-Hartman gregkh@linuxfoundation.org on Tue, 2020/11/10 21:56:
I'm announcing the release of the 5.9.8 kernel.
This is not yet linked on kernel.org - same goes for lts version 5.4.77. I guess this is not by intention, no?
kernel.org is "stuck" on some syncing tasks right now, it should be "unstuck" "soon". Hopefully. The admins know about it.
thanks,
greg k-h
linux-stable-mirror@lists.linaro.org