From 0215587ad18ff3b6ca3437b6e9dc53d72ff98b5f Mon Sep 17 00:00:00 2001 From: Evgenii Shatokhin Date: Tue, 11 Sep 2018 13:21:14 +0300 Subject: [PATCH] kpatch-build: ppc64le - fix a typo in find_special_section_data_ppc64le Nothing critical, but find_special_section_data_ppc64le() could run longer than needed: the exit condition was not met after all the values had been found. Fixes: 77f8fd09 "kpatch-build: ppc64le - Add special section support" Signed-off-by: Evgenii Shatokhin --- kpatch-build/kpatch-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kpatch-build/kpatch-build b/kpatch-build/kpatch-build index e94dbfa..fee26d4 100755 --- a/kpatch-build/kpatch-build +++ b/kpatch-build/kpatch-build @@ -237,7 +237,7 @@ find_special_section_data_ppc64le() { e == 1 && !/DW_AT_byte_size/ { e = 0; next } # Now that we know the size, stop parsing for it - f == 1 {printf("export FIXUP_STRUCT_SIZE=%d\n", $4); a = 2} + f == 1 {printf("export FIXUP_STRUCT_SIZE=%d\n", $4); f = 2} b == 1 {printf("export BUG_STRUCT_SIZE=%d\n", $4); b = 2} e == 1 {printf("export EX_STRUCT_SIZE=%d\n", $4); e = 2}