From b0f5ded2b0bc1f58efc00a130eea633f04a2ad63 Mon Sep 17 00:00:00 2001 From: Jessica Yu Date: Mon, 23 Jan 2017 22:42:25 -0800 Subject: [PATCH] kpatch-intermediate.h: fix comments --- kpatch-build/kpatch-intermediate.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kpatch-build/kpatch-intermediate.h b/kpatch-build/kpatch-intermediate.h index 87eeff3..4db11e7 100644 --- a/kpatch-build/kpatch-intermediate.h +++ b/kpatch-build/kpatch-intermediate.h @@ -22,6 +22,8 @@ #ifndef _KPATCH_INTERMEDIATE_H_ #define _KPATCH_INTERMEDIATE_H_ +/* For .kpatch.{symbols,relocations,arch} sections */ + struct kpatch_symbol { unsigned long src; unsigned long pos; @@ -30,7 +32,6 @@ struct kpatch_symbol { char *objname; /* object to which this sym belongs */ }; -/* For .kpatch.{symbols,relocations,arch} sections */ struct kpatch_relocation { unsigned long dest; unsigned int type; @@ -45,4 +46,4 @@ struct kpatch_arch { unsigned long sec; char *objname; }; -#endif /* _KPATCH_ELF_H_ */ +#endif /* _KPATCH_INTERMEDIATE_H_ */