mirror of
https://github.com/keycloak/keycloak.git
synced 2025-12-20 14:00:09 -06:00
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:
1
.github/actions/conditional/conditions
vendored
1
.github/actions/conditional/conditions
vendored
@@ -3,6 +3,7 @@
|
|||||||
# To test a pattern run '.github/actions/conditional/conditional.sh <remote name> <branch>'
|
# 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/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/ ci ci-quarkus ci-sssd
|
||||||
.github/scripts/ansible/ ci-store
|
.github/scripts/ansible/ ci-store
|
||||||
.github/scripts/aws/ ci-store
|
.github/scripts/aws/ ci-store
|
||||||
|
|||||||
4
.github/fake_fips/fake_fips.c
vendored
4
.github/fake_fips/fake_fips.c
vendored
@@ -34,7 +34,9 @@ static struct ctl_table crypto_sysctl_table[] = {
|
|||||||
.mode = 0444,
|
.mode = 0444,
|
||||||
.proc_handler = proc_dointvec
|
.proc_handler = proc_dointvec
|
||||||
},
|
},
|
||||||
|
#if (LINUX_VERSION_CODE < KERNEL_VERSION(6, 11, 0))
|
||||||
{}
|
{}
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
static struct ctl_table crypto_dir_table[] = {
|
static struct ctl_table crypto_dir_table[] = {
|
||||||
{
|
{
|
||||||
@@ -44,7 +46,9 @@ static struct ctl_table crypto_dir_table[] = {
|
|||||||
.child = crypto_sysctl_table
|
.child = crypto_sysctl_table
|
||||||
#endif
|
#endif
|
||||||
},
|
},
|
||||||
|
#if (LINUX_VERSION_CODE < KERNEL_VERSION(6, 11, 0))
|
||||||
{}
|
{}
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct ctl_table_header *crypto_sysctls;
|
static struct ctl_table_header *crypto_sysctls;
|
||||||
|
|||||||
Reference in New Issue
Block a user