 
	
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Minios-devel] [UNIKRAFT PATCH v2 01/18] plat/kvm: Place early boot code to the start of the image (x86)
 Hey,thanks for the review. I screwed up the patch subject as well, it is just a single patch (not part of 18). Sorry for this. Thanks, Simon On 13.06.2018 12:49, Yuri Volchkov wrote: Sorry, I screwed up my previous email :) This is how it supposed to look like: Reviewed-by: Yuri Volchkov <yuri.volchkov@xxxxxxxxx> Simon Kuenzer <simon.kuenzer@xxxxxxxxx> writes:Places early boot code (e.g., 64bit mode switch) and data (e.g., GDT) to the start of the image. This avoids general protection faults that were caused whenever the linker placed such items to addresses that were not accessible while the mode switch to 64bit and address space setup was not finished. Signed-off-by: Simon Kuenzer <simon.kuenzer@xxxxxxxxx> --- plat/kvm/x86/entry64.S | 21 ++++++++++++--------- plat/kvm/x86/link64.ld | 3 ++- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/plat/kvm/x86/entry64.S b/plat/kvm/x86/entry64.S index bda7d40..1a10359 100644 --- a/plat/kvm/x86/entry64.S +++ b/plat/kvm/x86/entry64.S @@ -30,24 +30,24 @@ #include <x86/cpu_defs.h> #include <kvm-x86/multiboot_defs.h>-#define ENTRY(x) .text; .globl x; .type x,%function; x:+#define ENTRY(x) .globl x; .type x,%function; x: #define END(x) .size x, . - x#define MYMULTIBOOT_FLAGS \ _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel 
 
 | 
|  | Lists.xenproject.org is hosted with RackSpace, monitoring our |