> On Sep 7, 2019, at 2:26 PM, Ricardo Neri > <ricardo.neri-calde...@linux.intel.com> wrote: > > On Thu, Sep 05, 2019 at 04:22:21PM -0700, Brendan Shanks wrote: >> >> if (umip_inst == UMIP_INST_SGDT || umip_inst == UMIP_INST_SIDT) { >> + u64 dummy_base_addr; >> + u16 dummy_limit = 0; >> + >> /* SGDT and SIDT do not use registers operands. */ >> if (X86_MODRM_MOD(insn->modrm.value) == 3) >> return -EINVAL; >> @@ -228,13 +228,24 @@ static int emulate_umip_insn(struct insn *insn, int >> umip_inst, >> else >> dummy_base_addr = UMIP_DUMMY_IDT_BASE; >> >> - *data_size = UMIP_GDT_IDT_LIMIT_SIZE + UMIP_GDT_IDT_BASE_SIZE; > > Maybe a blank line here?
Adding a blank line in place of the removed line? I’m not sure I see the need for it, there’s already a blank line above, and it's followed by the block comment. Brendan