From d07fe1d8b1d198ceeb7a7afb53c121ccce0f31f7 Mon Sep 17 00:00:00 2001 From: Josh Poimboeuf Date: Tue, 29 Apr 2014 11:08:12 -0500 Subject: [PATCH] Revert "fail on changed init section" This reverts commit 7b15e23149bcb9e8b4e671542485ac8d5d54ec1b. It seems that there was no bug to start with, so apparently the commit didn't fix anything. Fixes #103. --- kpatch-build/create-diff-object.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/kpatch-build/create-diff-object.c b/kpatch-build/create-diff-object.c index 32a802e..117d7c9 100644 --- a/kpatch-build/create-diff-object.c +++ b/kpatch-build/create-diff-object.c @@ -512,11 +512,8 @@ void kpatch_compare_correlated_section(struct section *sec) else kpatch_compare_correlated_nonrela_section(sec); out: - if (sec->status == CHANGED) { + if (sec->status == CHANGED) log_debug("section %s has changed\n", sec->name); - if (!strcmp(sec->name, ".init.text")) - DIFF_FATAL("init section has changed"); - } } void kpatch_compare_sections(struct table *table)