Re: [Xen-devel] [PATCH v4 06/20] x86emul: place test blobs in executable section

2018-03-06 Thread Jan Beulich
>>> On 06.03.18 at 12:28, wrote: > On 28/02/18 13:00, Jan Beulich wrote: >> --- unstable.orig/tools/tests/x86_emulator/Makefile >> +++ unstable/tools/tests/x86_emulator/Makefile >> @@ -91,7 +91,7 @@ $(addsuffix .h,$(TESTCASES)): %.h: %.c t >> $(MAKE) -f testcase.mk TESTCASE=$* XEN_TAR

Re: [Xen-devel] [PATCH v4 06/20] x86emul: place test blobs in executable section

2018-03-06 Thread Andrew Cooper
On 28/02/18 13:00, Jan Beulich wrote: > This allows the section contents to be disassembled without going > through any extra hoops, simplifying the analysis of problems in test > and/or emulation code. > > The blobs being emitted as (r/o) data means we need to accept an > assembler warning here (a

[Xen-devel] [PATCH v4 06/20] x86emul: place test blobs in executable section

2018-02-28 Thread Jan Beulich
This allows the section contents to be disassembled without going through any extra hoops, simplifying the analysis of problems in test and/or emulation code. The blobs being emitted as (r/o) data means we need to accept an assembler warning here (about the differing section attributes). Signed-o