From: Razvan Cojocaru <rcojocaru@bitdefender.com>
To: Jan Beulich <JBeulich@suse.com>
Cc: tim@xen.org, xen-devel@lists.xen.org
Subject: Re: [PATCH RFC 1/9] xen: Emulate with no writes; compute current instruction length
Date: Wed, 02 Jul 2014 18:43:11 +0300 [thread overview]
Message-ID: <53B4288F.8000103@bitdefender.com> (raw)
In-Reply-To: <53B43FA1020000780001FA92@mail.emea.novell.com>
On 07/02/2014 06:21 PM, Jan Beulich wrote:
>> + struct x86_emulate_ctxt __attribute__((unused)) *ctxt)
>
> We don't mark unused function arguments like this (and if we did,
> we'd want you to use __maybe_unused).
OK, thanks. What's the proper way to mark them? Should I go with
__maybe_unused then?
>> +int hvm_emulate_one_no_write(
>> + struct hvm_emulate_ctxt *hvmemul_ctxt)
>> +{
>
> This must be pretty redundant with hvm_emulate_one(), and hence
> most if not all of the redundancy should be factored out.
Will do.
>> +void hvm_emulate_one_full(bool_t nowrite)
>> +{
>> + struct hvm_emulate_ctxt ctx[1] = {};
>> + int rc = X86EMUL_RETRY;
>> +
>> + hvm_emulate_prepare(ctx, guest_cpu_user_regs());
>> +
>> + while ( rc == X86EMUL_RETRY )
>> + {
>> + if ( nowrite )
>> + rc = hvm_emulate_one_no_write(ctx);
>> + else
>> + rc = hvm_emulate_one(ctx);
>> + }
>> +
>> + switch ( rc )
>> + {
>> + case X86EMUL_UNHANDLEABLE:
>> + hvm_inject_hw_exception(TRAP_invalid_op, HVM_DELIVER_NO_ERROR_CODE);
>
> Is it certain that #UD is always the right exception here?
For our purposes, yes.
>> +int hvm_get_insn_length(
>> + struct hvm_emulate_ctxt *hvmemul_ctxt)
>> +{
>
> There again looks to be quite a bit of redundancy here. Please let's
> avoid having n copies of (almost) the same code.
Will factor it out.
>> --- /dev/null
>> +++ b/xen/arch/x86/inat-tables.c
>
> I'm not going to look at this in much detail, just a couple of general
> notes:
> - at least some of the information is redundant with the full x86
> emulator; as before redundancy should be avoided
> - many if not all of the arrays here appear to only be used locally,
> and hence ought to be static
> - some of the tables are extremely sparse (take
> inat_escape_table_3_3[] as an example); would be nice to collapse
> those
> - making future changes/additions to these tables is going to be
> pretty hard with them having neither suitable names nor comments
> - coding style (also elsewhere) seems to be Linux'es, yet you don't
> mention in the description that they come from Linux (and if they
> don't you'd be asked to convert them to Xen style)
Yes, the files do come from Linux, hence the coding style and the rest
of the issues. We've left them as they are on purpose, to try to reflect
that. I was under the impression that at least some of them say so at
the beginning of the file.
I'll make sure to mention this explicitly in subsequent retries.
Of course, that means that I can't really explain what the original
author intended (related to the rest of your critique).
Thanks,
Razvan Cojocaru
next prev parent reply other threads:[~2014-07-02 15:43 UTC|newest]
Thread overview: 64+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-02 13:33 [PATCH RFC 1/9] xen: Emulate with no writes; compute current instruction length Razvan Cojocaru
2014-07-02 13:33 ` [PATCH RFC 2/9] xen: Optimize introspection access to guest state Razvan Cojocaru
2014-07-02 15:31 ` Andrew Cooper
2014-07-07 14:50 ` Razvan Cojocaru
2014-07-10 8:05 ` Razvan Cojocaru
2014-07-10 8:17 ` Andrew Cooper
2014-07-10 8:23 ` Razvan Cojocaru
2014-07-10 11:57 ` Razvan Cojocaru
2014-07-10 12:16 ` Razvan Cojocaru
2014-07-10 13:01 ` Andrew Cooper
2014-07-02 15:37 ` Jan Beulich
2014-07-03 8:12 ` Razvan Cojocaru
2014-07-03 8:54 ` Jan Beulich
2014-07-02 13:33 ` [PATCH RFC 3/9] xen: Force-enable relevant MSR events; optimize the number of sent MSR events Razvan Cojocaru
2014-07-02 15:35 ` Andrew Cooper
2014-07-02 15:43 ` Jan Beulich
2014-07-09 8:02 ` Razvan Cojocaru
2014-07-23 7:56 ` Jan Beulich
2014-07-23 8:03 ` Razvan Cojocaru
2014-07-02 13:33 ` [PATCH RFC 4/9] xenctrl: Make the headers C++ friendly Razvan Cojocaru
2014-07-02 15:37 ` Andrew Cooper
2014-07-02 13:33 ` [PATCH RFC 5/9] xen: Support for VMCALL mem_events Razvan Cojocaru
2014-07-02 15:47 ` Jan Beulich
2014-07-02 15:54 ` Razvan Cojocaru
2014-07-02 16:11 ` Jan Beulich
2014-07-02 16:23 ` Razvan Cojocaru
2014-07-03 6:28 ` Jan Beulich
2014-07-03 7:29 ` Razvan Cojocaru
2014-07-02 15:54 ` Andrew Cooper
2014-07-02 15:59 ` Razvan Cojocaru
2014-07-02 13:33 ` [PATCH RFC 6/9] xen, libxc: Request page fault injection via libxc Razvan Cojocaru
2014-07-02 15:51 ` Jan Beulich
2014-07-02 16:00 ` Andrew Cooper
2014-07-02 16:58 ` Mihai Donțu
2014-07-02 17:07 ` Andrew Cooper
2014-07-03 8:23 ` Mihai Donțu
2014-07-03 9:32 ` Andrew Cooper
2014-07-03 9:40 ` Razvan Cojocaru
2014-07-02 16:06 ` Razvan Cojocaru
2014-07-02 16:13 ` Jan Beulich
2014-07-02 13:33 ` [PATCH RFC 7/9] xen: Handle resumed instruction based on previous mem_event reply Razvan Cojocaru
2014-07-02 15:56 ` Jan Beulich
2014-07-03 8:55 ` Razvan Cojocaru
2014-07-03 9:02 ` Jan Beulich
2014-07-03 9:12 ` Razvan Cojocaru
2014-07-03 9:18 ` Andrew Cooper
2014-07-03 9:22 ` Jan Beulich
2014-07-03 9:34 ` Razvan Cojocaru
2014-07-03 10:14 ` Jan Beulich
2014-07-02 13:34 ` [PATCH RFC 8/9] xen: Generic instruction re-execution mechanism for execute faults Razvan Cojocaru
2014-07-02 16:04 ` Andrew Cooper
2014-07-02 13:34 ` [PATCH RFC 9/9] mm: mark pages that have their permissions controlled by a domain Razvan Cojocaru
2014-07-03 10:19 ` Jan Beulich
2014-07-03 11:27 ` Razvan Cojocaru
2014-07-03 12:15 ` Jan Beulich
2014-07-02 15:20 ` [PATCH RFC 1/9] xen: Emulate with no writes; compute current instruction length Andrew Cooper
2014-07-03 7:42 ` Razvan Cojocaru
2014-07-02 15:21 ` Jan Beulich
2014-07-02 15:43 ` Razvan Cojocaru [this message]
2014-07-02 16:08 ` Jan Beulich
2014-07-02 16:18 ` Razvan Cojocaru
2014-07-03 6:24 ` Jan Beulich
2014-07-03 7:38 ` Razvan Cojocaru
2014-07-03 8:05 ` Jan Beulich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53B4288F.8000103@bitdefender.com \
--to=rcojocaru@bitdefender.com \
--cc=JBeulich@suse.com \
--cc=tim@xen.org \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.