Adapt fake_fips for kernel 6.11

Closes #39125

Signed-off-by: rmartinc <rmartinc@redhat.com>
Signed-off-by: Alexander Schwartz <aschwart@redhat.com>
Co-authored-by: Alexander Schwartz <alexander.schwartz@gmx.net>
This commit is contained in:
Ricardo Martin
2025-04-23 21:19:30 +02:00
committed by GitHub
parent 3e0bb6dfbd
commit 44dfbb61d0
2 changed files with 6 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
# To test a pattern run '.github/actions/conditional/conditional.sh <remote name> <branch>'
.github/actions/ ci ci-quarkus ci-store ci-sssd operator js codeql-java codeql-javascript codeql-typescript guides documentation
.github/fake_fips/ ci
.github/scripts/ ci ci-quarkus ci-sssd
.github/scripts/ansible/ ci-store
.github/scripts/aws/ ci-store

View File

@@ -34,7 +34,9 @@ static struct ctl_table crypto_sysctl_table[] = {
.mode = 0444,
.proc_handler = proc_dointvec
},
{}
#if (LINUX_VERSION_CODE < KERNEL_VERSION(6, 11, 0))
{}
#endif
};
static struct ctl_table crypto_dir_table[] = {
{
@@ -44,7 +46,9 @@ static struct ctl_table crypto_dir_table[] = {
.child = crypto_sysctl_table
#endif
},
#if (LINUX_VERSION_CODE < KERNEL_VERSION(6, 11, 0))
{}
#endif
};
static struct ctl_table_header *crypto_sysctls;