Re: [Xen-devel] [PATCH v3 08/12] fuzz/x86_emulate: Move definitions into a header

2017-10-11 Thread Jan Beulich
>>> On 10.10.17 at 19:25, wrote: > George Dunlap writes ("[PATCH v3 08/12] fuzz/x86_emulate: Move definitions > into a header"): >> Move fuzz-emul.c function prototypes into a header. Also share the >> definition of the input size (rather than hard-coding it in >> fuzz-emul.c). >> >> Signed-off

Re: [Xen-devel] [PATCH v3 08/12] fuzz/x86_emulate: Move definitions into a header

2017-10-10 Thread Ian Jackson
George Dunlap writes ("[PATCH v3 08/12] fuzz/x86_emulate: Move definitions into a header"): > Move fuzz-emul.c function prototypes into a header. Also share the > definition of the input size (rather than hard-coding it in > fuzz-emul.c). > > Signed-off-by: George Dunlap Reviewed-by: Ian Jacks

[Xen-devel] [PATCH v3 08/12] fuzz/x86_emulate: Move definitions into a header

2017-10-10 Thread George Dunlap
Move fuzz-emul.c function prototypes into a header. Also share the definition of the input size (rather than hard-coding it in fuzz-emul.c). Signed-off-by: George Dunlap --- RFC: Worth trying to BUILD_BUG_ON(INPUT_SIZE < DATA_SIZE_FULL)? v3: - New in this version CC: Ian Jackson CC: Wei Liu