summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSimon Rettberg2024-04-10 15:30:36 +0200
committerSimon Rettberg2024-04-10 15:30:36 +0200
commita0bc45a83747afe7c82b8fda7438748fabe5a994 (patch)
tree36199ae2a801e9d853e5aa63f04304c5b2e6fb15 /.github
parent[KERNEL] Fix build on Linux 6.8 and CentOS 9.5 (diff)
downloadxloop-a0bc45a83747afe7c82b8fda7438748fabe5a994.tar.gz
xloop-a0bc45a83747afe7c82b8fda7438748fabe5a994.tar.xz
xloop-a0bc45a83747afe7c82b8fda7438748fabe5a994.zip
[KERNEL] Fix build on CentOS 9.5-but-newer
So far, breaking changes were accompanied with a bump of the minor version, but not this time. Bewetween -432 and-435, the signature of disk_force_media_change() changed (haha), but the version number stayed the same. Pick the completely arbitrary macro QUEUE_FLAG_SYNCHRONOUS which only exists in -435 to tell the versions apart.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-kernel-modules.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build-kernel-modules.yml b/.github/workflows/build-kernel-modules.yml
index 85a54cc..7d51ee2 100644
--- a/.github/workflows/build-kernel-modules.yml
+++ b/.github/workflows/build-kernel-modules.yml
@@ -41,14 +41,14 @@ jobs:
build-os: ubuntu-22.04
kernel-type: centos-rpm
kernel-source: https://vault.centos.org/8.5.2111/BaseOS/Source/SPackages/kernel-4.18.0-348.7.1.el8_5.src.rpm
- - name: CentOS 9.4 [5.14.0]
- build-os: ubuntu-22.04
- kernel-type: centos-tar
- kernel-source: https://files.bwlp.ks.uni-freiburg.de/stuff/centos/linux-5.14.0-427.el9.tar.xz
- name: CentOS 9.5 [5.14.0]
build-os: ubuntu-22.04
kernel-type: centos-tar
kernel-source: https://files.bwlp.ks.uni-freiburg.de/stuff/centos/linux-5.14.0-432.el9.tar.xz
+ - name: CentOS 9.5b [5.14.0]
+ build-os: ubuntu-22.04
+ kernel-type: centos-tar
+ kernel-source: https://files.bwlp.ks.uni-freiburg.de/stuff/centos/linux-5.14.0-435.el9.tar.xz
name: Build xloop ${{ matrix.config.name }}
runs-on: ${{ matrix.config.build-os }}
steps: