Skip to content

Commit

Permalink
Merge pull request #1392 from ryanbsull/x86-paravirt-fix
Browse files Browse the repository at this point in the history
kpatch-build: handle paravirt absence in Linux v6.8+
  • Loading branch information
joe-lawrence authored May 15, 2024
2 parents ef68b4e + 36ba2b8 commit b75d4c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kpatch-build/kpatch-build
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ find_special_section_data() {
"x86_64")
check[a]=true # alt_instr
kernel_version_gte 5.10.0 && check[s]=true # static_call_site
[[ -n "$CONFIG_PARAVIRT" ]] && check[p]=true # paravirt_patch_site
[[ -n "$CONFIG_PARAVIRT" ]] && ! kernel_version_gte 6.8.0 && check[p]=true # paravirt_patch_site
;;
"ppc64le")
check[f]=true # fixup_entry
Expand Down

0 comments on commit b75d4c4

Please sign in to comment.