All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dario Faggioli <dario.faggioli@citrix.com>
To: Li Yechen <lccycc123@gmail.com>
Cc: Wei Liu <wei.liu2@citrix.com>,
	"xen-devel@lists.xen.org" <xen-devel@lists.xen.org>
Subject: Re: [ Help! ] how is ctx->xch in xen/tools/libxl/xl_cmdimpl.c initialized?
Date: Tue, 23 Apr 2013 19:23:52 +0200	[thread overview]
Message-ID: <1366737832.2670.44.camel@Solace> (raw)
In-Reply-To: <CAP5+zHQeCvYsRALYv7HDUR6JW=85j=YMKRcmadgDZGM9eVPyvA@mail.gmail.com>


[-- Attachment #1.1: Type: text/plain, Size: 2663 bytes --]

On mar, 2013-04-16 at 23:17 +0800, Li Yechen wrote:
> Thank you very much!
> I find the function pointer point to :
> .u.privcmd.hypercall = &linux_privcmd_hypercall      on Line 423
> 
> [snip]
> 
> I just want to find out how xl comnand works, does it actually call
> this function?
> The code of Xen of this part have no any commons..It's too hard to
> understand.
>
Ok (first, sorry for the delay), you said you're interested in what
main_memset(), in xl_cmdimpl.c, end up doing at the hypervisor level,
right?

Up to what I can see, the call chain is this:
 main_memset() [tools/libxl/xl_cmdimpl.c]
  |
  --> set_memory_target() [tools/libxl/xl_cmdimpl.c]
       |
       --> xc_domain_setmaxmem() ? xc_domain_set_pod_target() [tools/libxl/libxl.c]
            |
            --> xc_domain_setmaxmem() [tools/libxc/xc_domain.c]:
                 domctl.cmd = XEN_DOMCTL_max_mem;
                 domctl.u.max_mem.max_memkb = max_memkb;
                 return do_domctl(xch, &domctl);

So, here is when the hypercall is invoked (Assuming that you're
interested in the path that calls xc_domain_setmaxmem, otherwise, the
hypercall invoked within xc_domain_set_pod_target() is
XENMEM_set_pod_target).

Now, when looking for XEN_DOMCTL_max_mem, consider the reference to it
that can be found in xen/common/domctl.c at (around) line 886:

    case XEN_DOMCTL_max_mem:
    {
        unsigned long new_max;

        ret = -EINVAL;
        new_max = op->u.max_mem.max_memkb >> (PAGE_SHIFT-10);

        spin_lock(&d->page_alloc_lock);
        /*
         * NB. We removed a check that new_max >= current tot_pages; this means
         * that the domain will now be allowed to "ratchet" down to new_max. In
         * the meantime, while tot > max, all new allocations are disallowed.
         */
        d->max_pages = new_max;
        ret = 0;
        spin_unlock(&d->page_alloc_lock);
    }
    break;

And this is it. As Wei was telling you, how the hypercall is actually
issued is what the OS dependent code does with all those functions
pointer you found. OTOH, when you're interested in knowing _what_ an
hypercall actually does, I'd dare to recommend digging until you find
the hypercall name (in this case XEN_DOMCTL_max_mem) and then
grep-ing/cscope-ing it directly in the hypervisor code.

Does that help? :-)

Regards,
Dario

-- 
<<This happens because I choose it to happen!>> (Raistlin Majere)
-----------------------------------------------------------------
Dario Faggioli, Ph.D, http://about.me/dario.faggioli
Senior Software Engineer, Citrix Systems R&D Ltd., Cambridge (UK)


[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 126 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

      parent reply	other threads:[~2013-04-23 17:23 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-11 13:06 [ Help! ] how is ctx->xch in xen/tools/libxl/xl_cmdimpl.c initialized? Li Yechen
2013-04-11 18:41 ` Wei Liu
2013-04-16 15:17   ` Li Yechen
2013-04-16 15:31     ` Wei Liu
2013-04-23 17:23     ` Dario Faggioli [this message]

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=1366737832.2670.44.camel@Solace \
    --to=dario.faggioli@citrix.com \
    --cc=lccycc123@gmail.com \
    --cc=wei.liu2@citrix.com \
    --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.