mailweb.openeuler.org
Manage this list

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

Kernel-build

Threads by month
  • ----- 2025 -----
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
kernel-build@openeuler.org

October 2023

  • 2 participants
  • 8 discussions
[PATCH openEuler-20.03-LTS-SP4] add new line at the end of series.conf
by Yu Liao 31 Oct '23

31 Oct '23
--- kernel.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/kernel.spec b/kernel.spec index c0bd82f1e791..1a8ad37c95d8 100644 --- a/kernel.spec +++ b/kernel.spec @@ -32,7 +32,7 @@ Name: kernel Version: 4.19.90 -Release: %{hulkrelease}.0228 +Release: %{hulkrelease}.0229 Summary: Linux Kernel License: GPLv2 URL: http://www.kernel.org/ @@ -241,11 +241,12 @@ ignores_for_main="CONFIG_DESCRIPTION,FILE_PATH_CHANGES,GERRIT_CHANGE_ID,GIT_COMM Checkpatches() { local SERIESCONF=$1 local PATCH_DIR=$2 + echo "" >> $SERIESCONF sed -i '/^#/d' $SERIESCONF sed -i '/^[\s]*$/d' $SERIESCONF set +e - while IFS= read -r patch; do + while read patch; do output=$(scripts/checkpatch.pl --ignore $ignores_for_main $PATCH_DIR/$patch) if echo "$output" | grep -q "ERROR:"; then echo "checkpatch $patch failed" @@ -830,6 +831,10 @@ fi %endif %changelog + +* Tue Oct 31 2023 Yu Liao <liaoyu15(a)huawei.com> - 4.19.90-2310.4.0.0229 +- add new line at the end of series.conf + * Tue Oct 31 2023 hongrongxuan <hongrongxuan(a)huawei.com> - 4.19.90-2310.4.0.0228 - drivers/perf: Add support for ARMv8.3-SPE - perf arm-spe: Add support for ARMv8.3-SPE -- 2.33.0
2 1
0 0
[PATCH openEuler-20.03-LTS-SP4] add checkpatch check
by Yu Liao 30 Oct '23

30 Oct '23
--- kernel.spec | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/kernel.spec b/kernel.spec index 5bcf9476f107..3c9e31996699 100644 --- a/kernel.spec +++ b/kernel.spec @@ -32,7 +32,7 @@ Name: kernel Version: 4.19.90 -Release: %{hulkrelease}.0225 +Release: %{hulkrelease}.0226 Summary: Linux Kernel License: GPLv2 URL: http://www.kernel.org/ @@ -236,6 +236,28 @@ if [ ! -d patches ];then mv ../patches . fi +ignores_for_main="CONFIG_DESCRIPTION,FILE_PATH_CHANGES,GERRIT_CHANGE_ID,GIT_COMMIT_ID,UNKNOWN_COMMIT_ID,FROM_SIGN_OFF_MISMATCH,REPEATED_WORD,COMMIT_COMMENT_SYMBOL,BLOCK_COMMENT_STYLE,AVOID_EXTERNS,AVOID_BUG" + +Checkpatches() { + local SERIESCONF=$1 + local PATCH_DIR=$2 + sed -i '/^#/d' $SERIESCONF + sed -i '/^[\s]*$/d' $SERIESCONF + + set +e + while IFS= read -r patch; do + output=$(scripts/checkpatch.pl --ignore $ignores_for_main $PATCH_DIR/$patch) + if echo "$output" | grep -q "ERROR:"; then + echo "checkpatch $patch failed" + set -e + return 1 + fi + done < "$SERIESCONF" + + set -e + return 0 +} + Applypatches() { set -e @@ -252,6 +274,7 @@ Applypatches() ) | sh } +Checkpatches series.conf %{_builddir}/kernel-%{version}/linux-%{KernelVer} Applypatches series.conf %{_builddir}/kernel-%{version}/linux-%{KernelVer} %endif @@ -807,6 +830,9 @@ fi %endif %changelog +* Fri Oct 30 2023 Yu Liao <liaoyu15(a)huawei.com> - 4.19.90-2310.4.0.0226 +- Add checkpatch check + * Sat Oct 28 2023 YunYi Yang <yangyunyi2(a)huawei.com> - 4.19.90-2310.4.0.0225 - config: arm64: Enable config of hisi ptt - hwtracing: hisi_ptt: Add dummy callback pmu::read() -- 2.33.0
2 1
0 0
[PATCH openEuler-20.03-LTS-SP4 v1 1/1] add checkpatch check
by Yu Liao 30 Oct '23

30 Oct '23
--- kernel.spec | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/kernel.spec b/kernel.spec index 5bcf9476f107..3c9e31996699 100644 --- a/kernel.spec +++ b/kernel.spec @@ -32,7 +32,7 @@ Name: kernel Version: 4.19.90 -Release: %{hulkrelease}.0225 +Release: %{hulkrelease}.0226 Summary: Linux Kernel License: GPLv2 URL: http://www.kernel.org/ @@ -236,6 +236,28 @@ if [ ! -d patches ];then mv ../patches . fi +ignores_for_main="CONFIG_DESCRIPTION,FILE_PATH_CHANGES,GERRIT_CHANGE_ID,GIT_COMMIT_ID,UNKNOWN_COMMIT_ID,FROM_SIGN_OFF_MISMATCH,REPEATED_WORD,COMMIT_COMMENT_SYMBOL,BLOCK_COMMENT_STYLE,AVOID_EXTERNS,AVOID_BUG" + +Checkpatches() { + local SERIESCONF=$1 + local PATCH_DIR=$2 + sed -i '/^#/d' $SERIESCONF + sed -i '/^[\s]*$/d' $SERIESCONF + + set +e + while IFS= read -r patch; do + output=$(scripts/checkpatch.pl --ignore $ignores_for_main $PATCH_DIR/$patch) + if echo "$output" | grep -q "ERROR:"; then + echo "checkpatch $patch failed" + set -e + return 1 + fi + done < "$SERIESCONF" + + set -e + return 0 +} + Applypatches() { set -e @@ -252,6 +274,7 @@ Applypatches() ) | sh } +Checkpatches series.conf %{_builddir}/kernel-%{version}/linux-%{KernelVer} Applypatches series.conf %{_builddir}/kernel-%{version}/linux-%{KernelVer} %endif @@ -807,6 +830,9 @@ fi %endif %changelog +* Fri Oct 30 2023 Yu Liao <liaoyu15(a)huawei.com> - 4.19.90-2310.4.0.0226 +- Add checkpatch check + * Sat Oct 28 2023 YunYi Yang <yangyunyi2(a)huawei.com> - 4.19.90-2310.4.0.0225 - config: arm64: Enable config of hisi ptt - hwtracing: hisi_ptt: Add dummy callback pmu::read() -- 2.33.0
2 1
0 0
[PATCH openEuler-20.03-LTS-SP4 v2 0/2] Expose SVE2 features for userspace
by Yu Liao 28 Oct '23

28 Oct '23
v1 -> v2: add new bugfix patch Wei Li (1): Add series.conf Yu Liao (1): Expose SVE2 features for userspace kernel.spec | 2 +- ...rm64-HWCAP-add-support-for-AT_HWCAP2.patch | 463 ++++++++++++++++++ ...4-Expose-SVE2-features-for-userspace.patch | 275 +++++++++++ ...-Fix-missing-ZFR0-in-__read_sysreg_b.patch | 55 +++ ...-Treat-ID_AA64ZFR0_EL1-as-RAZ-when-S.patch | 67 +++ series.conf | 7 + 6 files changed, 868 insertions(+), 1 deletion(-) create mode 100644 patches/0001-arm64-HWCAP-add-support-for-AT_HWCAP2.patch create mode 100644 patches/0002-arm64-Expose-SVE2-features-for-userspace.patch create mode 100644 patches/0003-arm64-cpufeature-Fix-missing-ZFR0-in-__read_sysreg_b.patch create mode 100644 patches/0004-arm64-cpufeature-Treat-ID_AA64ZFR0_EL1-as-RAZ-when-S.patch create mode 100644 series.conf -- 2.33.0
2 3
0 0
[PATCH openEuler-20.03-LTS-SP4 0/2] Expose SVE2 features for userspace
by Yu Liao 27 Oct '23

27 Oct '23
Wei Li (1): Add series.conf Yu Liao (1): Expose SVE2 features for userspace kernel.spec | 2 +- ...rm64-HWCAP-add-support-for-AT_HWCAP2.patch | 462 ++++++++++++++++++ ...4-Expose-SVE2-features-for-userspace.patch | 275 +++++++++++ series.conf | 5 + 4 files changed, 743 insertions(+), 1 deletion(-) create mode 100644 patches/0001-arm64-HWCAP-add-support-for-AT_HWCAP2.patch create mode 100644 patches/0002-arm64-Expose-SVE2-features-for-userspace.patch create mode 100644 series.conf -- 2.33.0
1 2
0 0
[PATCH openEuler-20.03-LTS-SP4 0/2] support CPU turbo for
by Yu Liao 17 Oct '23

17 Oct '23
Xiongfeng Wang (2): cpufreq: change '.set_boost' to act on one policy cpufreq: CPPC: add SW BOOST support drivers/cpufreq/acpi-cpufreq.c | 14 ++++---- drivers/cpufreq/cppc_cpufreq.c | 35 ++++++++++++++++++-- drivers/cpufreq/cpufreq.c | 58 +++++++++++++++++++--------------- include/linux/cpufreq.h | 2 +- 4 files changed, 75 insertions(+), 34 deletions(-) -- 2.25.1
1 2
0 0
[openEuler-20.03-LTS-SP4 PATCH 0/2] support CPU turbo for
by Yu Liao 17 Oct '23

17 Oct '23
Xiongfeng Wang (2): cpufreq: change '.set_boost' to act on one policy cpufreq: CPPC: add SW BOOST support drivers/cpufreq/acpi-cpufreq.c | 14 ++++---- drivers/cpufreq/cppc_cpufreq.c | 35 ++++++++++++++++++-- drivers/cpufreq/cpufreq.c | 58 +++++++++++++++++++--------------- include/linux/cpufreq.h | 2 +- 4 files changed, 75 insertions(+), 34 deletions(-) -- 2.25.1
1 2
0 0
[openEuler-20.03-LTS-SP4 PATCH 0/4] ACPI for MPAM 2.0
by Yu Liao 17 Oct '23

17 Oct '23
Erik Kaneda (1): ACPICA: ACPI 6.4: PPTT: add new version of subtable type 1 Hesham Almatary (1): ACPICA: Add support for Arm's MPAM ACPI table version 2 Yu Liao (2): ACPI / PPTT: Find PPTT processor node by cache id ACPI/MPAM: Adapt to Arm's MPAM ACPI table version 2 arch/arm64/kernel/mpam/mpam_device.c | 2 +- drivers/acpi/arm64/Makefile | 2 +- drivers/acpi/arm64/mpam.c | 21 +++- drivers/acpi/arm64/mpam_v2.c | 175 +++++++++++++++++++++++++++ drivers/acpi/pptt.c | 55 +++++++++ include/acpi/actbl2.h | 118 ++++++++++++++++++ include/linux/acpi.h | 5 + include/linux/arm_mpam.h | 2 +- 8 files changed, 373 insertions(+), 7 deletions(-) create mode 100644 drivers/acpi/arm64/mpam_v2.c -- 2.25.1
1 4
0 0

HyperKitty Powered by HyperKitty