forked from rpms/kernel
1
0
Fork 0

kernel-5.14.0-242.el9

* Mon Jan 23 2023 Herton R. Krzesinski <herton@redhat.com> [5.14.0-242.el9]
- net: Fix a data-race around gro_normal_batch. (Guillaume Nault) [2160073]
- ratelimit: Fix data-races in ___ratelimit(). (Guillaume Nault) [2160073]
- ipv4: Fix data-races around sysctl_fib_notify_on_flag_change. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl_tcp_reflect_tos. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_comp_sack_nr. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_comp_sack_slack_ns. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_comp_sack_delay_ns. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sk_pacing_rate. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_invalid_ratelimit. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_autocorking. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_min_rtt_wlen. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_min_tso_segs. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_challenge_ack_limit. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_limit_output_bytes. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl_tcp_no_ssthresh_metrics_save. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_nometrics_save. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_frto. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_adv_win_scale. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_app_win. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl_tcp_dsack. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl_tcp_max_reordering. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_abort_on_overflow. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_rfc1337. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_stdurg. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_retrans_collapse. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl_tcp_slow_start_after_idle. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_thin_linear_timeouts. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl_tcp_recovery. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_early_retrans. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl knobs related to SYN option. (Guillaume Nault) [2160073]
- ip: Fix data-races around sysctl_ip_prot_sock. (Guillaume Nault) [2160073]
- ipv4: Fix data-races around sysctl_fib_multipath_hash_fields. (Guillaume Nault) [2160073]
- ipv4: Fix data-races around sysctl_fib_multipath_hash_policy. (Guillaume Nault) [2160073]
- ipv4: Fix a data-race around sysctl_fib_multipath_use_neigh. (Guillaume Nault) [2160073]
- selftests/timens: add a test for vfork+exit (Oleg Nesterov) [2116442]
- fs/exec: switch timens when a task gets a new mm (Oleg Nesterov) [2116442]
- powerpc/pseries/vas: sysfs comments with the correct entries (Mukesh Chaurasiya) [2130348]
- powerpc/pseries/vas: use default_groups in kobj_type (Mukesh Chaurasiya) [2130348]
- powerpc/pseries/vas: Add VAS IRQ primary handler (Mukesh Chaurasiya) [2130348]
- powerpc: Ignore DSI error caused by the copy/paste instruction (Mukesh Chaurasiya) [2130348]
- powerpc/pseries: Move vas_migration_handler early during migration (Mukesh Chaurasiya) [2130348]
Resolves: rhbz#2160073, rhbz#2116442, rhbz#2130348

Signed-off-by: Herton R. Krzesinski <herton@redhat.com>
This commit is contained in:
Herton R. Krzesinski 2023-01-23 14:03:17 +00:00
parent 8a098fee39
commit 01ac8e7505
3 changed files with 51 additions and 8 deletions

View File

@ -12,7 +12,7 @@ RHEL_MINOR = 2
#
# Use this spot to avoid future merge conflicts.
# Do not trim this comment.
RHEL_RELEASE = 241
RHEL_RELEASE = 242
#
# ZSTREAM

View File

@ -119,15 +119,15 @@ Summary: The Linux kernel
# define buildid .local
%define specversion 5.14.0
%define patchversion 5.14
%define pkgrelease 241
%define pkgrelease 242
%define kversion 5
%define tarfile_release 5.14.0-241.el9
%define tarfile_release 5.14.0-242.el9
# This is needed to do merge window version magic
%define patchlevel 14
# This allows pkg_release to have configurable %%{?dist} tag
%define specrelease 241%{?buildid}%{?dist}
%define specrelease 242%{?buildid}%{?dist}
# This defines the kabi tarball version
%define kabiversion 5.14.0-241.el9
%define kabiversion 5.14.0-242.el9
#
# End of genspec.sh variables
@ -3116,6 +3116,49 @@ fi
#
#
%changelog
* Mon Jan 23 2023 Herton R. Krzesinski <herton@redhat.com> [5.14.0-242.el9]
- net: Fix a data-race around gro_normal_batch. (Guillaume Nault) [2160073]
- ratelimit: Fix data-races in ___ratelimit(). (Guillaume Nault) [2160073]
- ipv4: Fix data-races around sysctl_fib_notify_on_flag_change. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl_tcp_reflect_tos. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_comp_sack_nr. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_comp_sack_slack_ns. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_comp_sack_delay_ns. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sk_pacing_rate. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_invalid_ratelimit. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_autocorking. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_min_rtt_wlen. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_min_tso_segs. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_challenge_ack_limit. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_limit_output_bytes. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl_tcp_no_ssthresh_metrics_save. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_nometrics_save. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_frto. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_adv_win_scale. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_app_win. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl_tcp_dsack. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl_tcp_max_reordering. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_abort_on_overflow. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_rfc1337. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_stdurg. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_retrans_collapse. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl_tcp_slow_start_after_idle. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_thin_linear_timeouts. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl_tcp_recovery. (Guillaume Nault) [2160073]
- tcp: Fix a data-race around sysctl_tcp_early_retrans. (Guillaume Nault) [2160073]
- tcp: Fix data-races around sysctl knobs related to SYN option. (Guillaume Nault) [2160073]
- ip: Fix data-races around sysctl_ip_prot_sock. (Guillaume Nault) [2160073]
- ipv4: Fix data-races around sysctl_fib_multipath_hash_fields. (Guillaume Nault) [2160073]
- ipv4: Fix data-races around sysctl_fib_multipath_hash_policy. (Guillaume Nault) [2160073]
- ipv4: Fix a data-race around sysctl_fib_multipath_use_neigh. (Guillaume Nault) [2160073]
- selftests/timens: add a test for vfork+exit (Oleg Nesterov) [2116442]
- fs/exec: switch timens when a task gets a new mm (Oleg Nesterov) [2116442]
- powerpc/pseries/vas: sysfs comments with the correct entries (Mukesh Chaurasiya) [2130348]
- powerpc/pseries/vas: use default_groups in kobj_type (Mukesh Chaurasiya) [2130348]
- powerpc/pseries/vas: Add VAS IRQ primary handler (Mukesh Chaurasiya) [2130348]
- powerpc: Ignore DSI error caused by the copy/paste instruction (Mukesh Chaurasiya) [2130348]
- powerpc/pseries: Move vas_migration_handler early during migration (Mukesh Chaurasiya) [2130348]
* Fri Jan 20 2023 Herton R. Krzesinski <herton@redhat.com> [5.14.0-241.el9]
- blk-cgroup: Optimize blkcg_rstat_flush() (Waiman Long) [2077665]
- blk-cgroup: Return -ENOMEM directly in blkcg_css_alloc() error path (Waiman Long) [2077665]

View File

@ -1,3 +1,3 @@
SHA512 (linux-5.14.0-241.el9.tar.xz) = fa4d49deb4cf038cd3f9686b1ee5e989b023c6d0a86ebc9039f3e4888264eabcde1b22e2e73e8da391ea0c2c104a7d4c4b78ff8d96dd4256b8d7b37f536ee010
SHA512 (kernel-abi-stablelists-5.14.0-241.el9.tar.bz2) = eebd11e3829fbb5eebc3b8886f3fcd372c241a6be385240b56cbb7fd116f358bdc08283f30d3be64d767973e737b961bcb89be7d1602d55f2bd658d7c33a9ed3
SHA512 (kernel-kabi-dw-5.14.0-241.el9.tar.bz2) = e98f3f36564d6cad3901fccca10e5b11bc2ee57f7e09b104b3e13a03f538aaadb5aa08d1d9c6afa478681eddb14476ce23207a10c4f426d910aeaddd66d46117
SHA512 (linux-5.14.0-242.el9.tar.xz) = 4a01546f18cae9c1cdbc7d0f1fc75f6d48eeb23fb0bb1b9b21ed928d692a387e1da04612e3cb6e0a9a078ccadbe021108156662b6acda5cb867d1161c0db9d5b
SHA512 (kernel-abi-stablelists-5.14.0-242.el9.tar.bz2) = afa75911b441c7fdda6f5d36c241b72ff512e8c884f0b6b3898c8b77faded3b6d1f5f5d6c6f9e42171f073dcec6835dc086c7a8e506dbd4bad17d292b87ff6ab
SHA512 (kernel-kabi-dw-5.14.0-242.el9.tar.bz2) = 1fd25d27746e7c7dede841739f1d18f5b282ebfde30295a771ebd4bda2aa9609cec170d4f0d5b58297bb3f01605cafd1acd21938f98521527463f62789da1b86