Skip to content

Commit

Permalink
Ignore zfcpdump kernel on s390x
Browse files Browse the repository at this point in the history
Reported-by: Sebastian Mitterle
Thanks: Cornelia Huck
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=2027375
  • Loading branch information
rwmjones committed Nov 29, 2021
1 parent 9c2ca5f commit 9fbe476
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/format_ext2_kernel.ml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ and kernel_filter patterns is_arm all_files =
) all_files in
let files =
List.filter (fun filename -> find filename "xen" = -1) files in
let files =
List.filter (fun filename -> find filename "zfcpdump" = -1) files in
let files =
if not is_arm then files
else (
Expand Down

0 comments on commit 9fbe476

Please sign in to comment.