WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

Re: [Xen-devel] IA32 vcpu-pin broken?

To: "Apparao, Padmashree K" <padmashree.k.apparao@xxxxxxxxx>
Subject: Re: [Xen-devel] IA32 vcpu-pin broken?
From: Emmanuel Ackaouy <ack@xxxxxxxxxxxxx>
Date: Mon, 18 Sep 2006 17:56:46 +0100
Cc: xen-devel@xxxxxxxxxxxxxxxxxxx
Delivery-date: Mon, 18 Sep 2006 09:58:18 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
In-reply-to: <B5677069E3D9994D9EE1C7295072EA960B09F9A0@xxxxxxxxxxxxxxxxxxxxxxxxxxxx>
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Mail-followup-to: "Apparao, Padmashree K" <padmashree.k.apparao@xxxxxxxxx>, xen-devel@xxxxxxxxxxxxxxxxxxx
References: <B5677069E3D9994D9EE1C7295072EA960B09F9A0@xxxxxxxxxxxxxxxxxxxxxxxxxxxx>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mutt/1.4.1i
On Mon, Sep 18, 2006 at 09:36:57AM -0700, Apparao, Padmashree K wrote:
>    I want dom0 and a guest to be on the same physical cpu. I have booted dom0
>    with 1 cpu and also modified /etc/xen/xend-config.sxp to say "dom0-cpus
>    1".
> 
>    I cannot pin the dom0 cpu however, I can pin the guest cpu to be the same
>    as dom0 pcpu. However, the moment I start running an app in the guest,
>    dom0 pcpu changes to something else.
> 
>    I know it used to work before. I am using the xen-unstable from Aug 29^th.
>    (there is a patch for IA64 on dom0 pinning, but nothing for IA32)

It looks like the code in xen/common/domctl.c for
XEN_DOMCTL_getvcpuaffinity now rejects all operations
on the current VCPU (DOM0 VCPU0 on a UP dom0). Before,
it used to leave this up to the per-scheduler implementation
of set_affinity. The credit scheduler implementation allows
a new mask which contained the current cpu in it in this case.

See snipped from xen/common/domctl.c:

        [...]
        if ( op->cmd == XEN_DOMCTL_setvcpuaffinity )
        {
            if ( v == current )
            {
                ret = -EINVAL;
                put_domain(d);
                break;
            }
        [...]

So assuming the right checks still exist in the per-scheduler
implementations of set_affinity, we could remove this check.

Argueably though, we should just extend the IA64 patch to x86.
It should be trivial to do so. The changeset in question is
11453:019b7c756ddb.

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>