From: Jian Yu Date: Tue, 14 Nov 2023 07:55:32 +0000 (-0800) Subject: LU-17274 kernel: new kernel [RHEL 9.3 5.14.0-362.8.1.el9_3] X-Git-Tag: 2.15.4-RC1~11 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=503918da04fce7a25014112956c95e84188985bd;p=fs%2Flustre-release.git LU-17274 kernel: new kernel [RHEL 9.3 5.14.0-362.8.1.el9_3] This patch makes changes to support new RHEL 9.3 release for Lustre client. Lustre-change: https://review.whamcloud.com/53054 Lustre-commit: TBD (from 9146471f862d6c6fae6c1f6ac99f55d8280a2891) Test-Parameters: trivial env=SANITY_EXCEPT="27J 101j" \ mdtcount=4 mdscount=2 clientdistro=el9.3 testlist=sanity Test-Parameters: optional clientdistro=el9.3 testgroup=full-part-1 Test-Parameters: optional clientdistro=el9.3 testgroup=full-part-2 Test-Parameters: optional clientdistro=el9.3 testgroup=full-part-3 Change-Id: I9cce1a7d2249cb4df39106c44ba4417411ee0757 Signed-off-by: Jian Yu Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/53055 Tested-by: Maloo Tested-by: jenkins Reviewed-by: Oleg Drokin Reviewed-by: Yang Sheng --- diff --git a/contrib/lbuild/funcs.sh b/contrib/lbuild/funcs.sh index a6c3947..3830eee 100644 --- a/contrib/lbuild/funcs.sh +++ b/contrib/lbuild/funcs.sh @@ -195,6 +195,7 @@ autodetect_target() { rhel-9.0) target="5.14-rhel9.0";; rhel-9.1) target="5.14-rhel9.1";; rhel-9.2) target="5.14-rhel9.2";; + rhel-9.3) target="5.14-rhel9.3";; sles11.4) target="$(uname -r | cut -d . -f 1,2)-sles11sp4";; sles11.3) target="$(uname -r | cut -d . -f 1,2)-sles11sp3";; sles11*) target="$(uname -r | cut -d . -f 1,2)-sles11";; diff --git a/lustre/ChangeLog b/lustre/ChangeLog index 2c9de2e..80888ea 100644 --- a/lustre/ChangeLog +++ b/lustre/ChangeLog @@ -28,8 +28,8 @@ TBD Whamcloud vanilla linux 5.4.136 (ZFS + ldiskfs) * ldiskfs needs an ldiskfs patch series for that kernel, ZFS does not * Client primary kernels built and tested during release cycle: + 5.14.0-362.8.1.el9 (RHEL9.3) 5.14.0-284.30.1.el9 (RHEL9.2) - 5.14.0-162.23.1.el9 (RHEL9.1) 4.18.0-477.15.1.el8 (RHEL8.8) 5.4.0-37 (Ubuntu 20.04) 5.14.21-150400.24.28 (SLES15 SP4) @@ -50,6 +50,7 @@ TBD Whamcloud 4.18.0-372.32.1.el8 (RHEL8.6) 4.18.0-425.3.1.el8 (RHEL8.7) 5.14.0-70.30.1.el9 (RHEL9.0) + 5.14.0-162.23.1.el9 (RHEL9.1) 4.4.120-92.70 (SLES12 SP2) 4.4.180-94.100 (SLES12 SP3) 4.12.14-95.48 (SLES12 SP4) diff --git a/lustre/autoconf/lustre-core.m4 b/lustre/autoconf/lustre-core.m4 index 2927df7..34e9da9 100644 --- a/lustre/autoconf/lustre-core.m4 +++ b/lustre/autoconf/lustre-core.m4 @@ -3470,6 +3470,7 @@ lustre/doc/Makefile lustre/include/Makefile lustre/include/lustre/Makefile lustre/include/uapi/linux/lustre/Makefile +lustre/kernel_patches/targets/5.14-rhel9.3.target lustre/kernel_patches/targets/5.14-rhel9.2.target lustre/kernel_patches/targets/5.14-rhel9.1.target lustre/kernel_patches/targets/5.14-rhel9.0.target diff --git a/lustre/kernel_patches/targets/5.14-rhel9.3.target.in b/lustre/kernel_patches/targets/5.14-rhel9.3.target.in new file mode 100644 index 0000000..443fa29 --- /dev/null +++ b/lustre/kernel_patches/targets/5.14-rhel9.3.target.in @@ -0,0 +1,26 @@ +lnxmaj="5.14.0" +lnxrel="362.8.1.el9_3" + +KERNEL_SRPM=kernel-${lnxmaj}-${lnxrel}.src.rpm +SERIES="" +EXTRA_VERSION=${lnxrel}_lustre.@VERSION@ +LUSTRE_VERSION=@VERSION@ + +DEVEL_PATH_ARCH_DELIMETER="." +OFED_VERSION=inkernel + +BASE_ARCHS="i686 x86_64 ia64 ppc64" +BIGMEM_ARCHS="" +BOOT_ARCHS="" +JENSEN_ARCHS="" +#SMP_ARCHS="i686 x86_64 ia64 ppc64" +# RHEL8 doesn't use smp specific kernels +SMP_ARCHS="" +UP_ARCHS="" + +for cc in gcc ; do + if which $cc >/dev/null 2>/dev/null ; then + export CC=$cc + break + fi +done