kernel-rt-5.14.0-242.rt14.243.el9

* Mon Jan 23 2023 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-242.rt14.243.el9]
- [rt] build kernel-rt-5.14.0-242.rt14.243.el9 [2125474]
- 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#2125474

Signed-off-by: Luis Claudio R. Goncalves <lgoncalv@redhat.com>
This commit is contained in:
Luis Claudio R. Goncalves 2023-01-23 22:05:18 -03:00
parent 3a6d9dd913
commit d0ea88b2e6
3 changed files with 53 additions and 9 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
@ -66,4 +66,4 @@ ifneq ("$(ZSTREAM)", "yes")
endif
endif
RTBUILD:=.242
RTBUILD:=.243

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.rt14.242
%define pkgrelease 242.rt14.243
%define kversion 5
%define tarfile_release 5.14.0-241.rt14.242.el9
%define tarfile_release 5.14.0-242.rt14.243.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.rt14.242%{?buildid}%{?dist}
%define specrelease 242.rt14.243%{?buildid}%{?dist}
# This defines the kabi tarball version
%define kabiversion 5.14.0-241.rt14.242.el9
%define kabiversion 5.14.0-242.rt14.243.el9
#
# End of genspec.sh variables
@ -3246,6 +3246,50 @@ fi
#
#
%changelog
* Mon Jan 23 2023 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-242.rt14.243.el9]
- [rt] build kernel-rt-5.14.0-242.rt14.243.el9 [2125474]
- 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]
* Sat Jan 21 2023 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-241.rt14.242.el9]
- [rt] build kernel-rt-5.14.0-241.rt14.242.el9 [2125474]
- blk-cgroup: Optimize blkcg_rstat_flush() (Waiman Long) [2077665]

View File

@ -1,4 +1,4 @@
SHA512 (kernel-abi-whitelists-5.13.0-1.tar.bz2) = ceba454e1f590c1e4ef4115a75463ae3ac2c2aa7ec85fa14a2669d666c421483a38225ee19d7d72b4ac7032375741408b23543e43588538c80161ec0cf57051c
SHA512 (linux-5.14.0-241.rt14.242.el9.tar.xz) = dae8e0b51deeec8416c81f57ea04e5b0075963bbdc8c49862571258d2ad9750bd012c0ef9f846e58bde8afbb56b5c4246e1b663daeb23ca8b4f8deaa837d670d
SHA512 (kernel-abi-stablelists-5.14.0-241.rt14.242.el9.tar.bz2) = db3689ee3c57732ba6ec0b9b05c05d464718b55d059d295990b2b659842152c2230805b8a15dac1ae14f7eff5ab983912b454903d75fc604a5702d8f0aec1076
SHA512 (kernel-kabi-dw-5.14.0-241.rt14.242.el9.tar.bz2) = 565f812fa83a756ef7b91219031cfe80b1e853f22b4ed38ada76aed482caaf89df35e4d220f45728392765a757f8b0798e3b5a57fee0114e1d0379e887772578
SHA512 (linux-5.14.0-242.rt14.243.el9.tar.xz) = 360396d34e45b181c8f39fb2e1a37d00d5b1944b1c0920a21e28bb0a9dbc006be2dff91db2d5b7bfabe52b78cbf7307f91b4643cc7358514b9c98463fd0754c1
SHA512 (kernel-abi-stablelists-5.14.0-242.rt14.243.el9.tar.bz2) = 39da507174334fe26faebf08d4049cd186995eaaa929ff3422071915a0407a4c215555ed8f67fe99dfee21e1705d259c87288610d7387cd7d3c4d049bb3eca3e
SHA512 (kernel-kabi-dw-5.14.0-242.rt14.243.el9.tar.bz2) = 565f812fa83a756ef7b91219031cfe80b1e853f22b4ed38ada76aed482caaf89df35e4d220f45728392765a757f8b0798e3b5a57fee0114e1d0379e887772578