8000 Adapt fake_fips for kernel 6.11 by rmartinc · Pull Request #39164 · keycloak/keycloak · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Adapt fake_fips for kernel 6.11 #39164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/actions/conditional/conditions
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion .github/fake_fips/fake_fips.c
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = {
{
Expand All @@ -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;
Expand Down
Loading
0