diff --git a/.forgejo/workflows/release-build.yml b/.forgejo/workflows/release-build.yml index 5fae5d3..d2a1d1a 100644 --- a/.forgejo/workflows/release-build.yml +++ b/.forgejo/workflows/release-build.yml @@ -5,7 +5,7 @@ on: tags: - 'v*' env: - PVE_KERNEL_CFLAGS: -Wno-compare-distinct-pointer-types -Wno-error=format-truncation -Wno-error=array-bounds -Wno-error=stringop-overflow + PVE_KERNEL_CFLAGS: -Wno-error=format-truncation -Wno-error=array-bounds -Wno-error=stringop-overflow jobs: release-build: diff --git a/debian/patches/pve/0013-cast-pthreatd-stack-min-to-int.patch b/debian/patches/pve/0013-cast-pthreatd-stack-min-to-int.patch new file mode 100644 index 0000000..a5775e9 --- /dev/null +++ b/debian/patches/pve/0013-cast-pthreatd-stack-min-to-int.patch @@ -0,0 +1,13 @@ +diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c +index 954ce2f..aaf1cde 100644 +--- a/tools/perf/builtin-sched.c ++++ b/tools/perf/builtin-sched.c +@@ -670,7 +670,7 @@ static void create_tasks(struct perf_sched *sched) + err = pthread_attr_init(&attr); + BUG_ON(err); + err = pthread_attr_setstacksize(&attr, +- (size_t) max(16 * 1024, PTHREAD_STACK_MIN)); ++ (size_t) max(16 * 1024, (int)PTHREAD_STACK_MIN)); + BUG_ON(err); + err = pthread_mutex_lock(&sched->start_work_mutex); + BUG_ON(err); diff --git a/debian/patches/series.linux b/debian/patches/series.linux index 6bd20ed..3c65889 100644 --- a/debian/patches/series.linux +++ b/debian/patches/series.linux @@ -10,3 +10,4 @@ pve/0009-NFSv4-pnfs-Fix-a-use-after-free-bug-in-open.patch pve/0010-scsi-Revert-scsi-qla2xxx-Fix-disk-failure-to-redisco.patch pve/0011-ext4-recover-csum-seed-of-tmp_inode-after-migrating-.patch pve/0012-drm-i915-gt-Serialize-TLB-invalidates-with-GT-resets.patch +pve/0013-cast-pthreatd-stack-min-to-int.patch