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] [PATCH] Avoid panic when adjusting sedf parameters

To: Keir Fraser <keir.xen@xxxxxxxxx>
Subject: Re: [Xen-devel] [PATCH] Avoid panic when adjusting sedf parameters
From: Juergen Gross <juergen.gross@xxxxxxxxxxxxxx>
Date: Thu, 17 Nov 2011 15:04:57 +0100
Cc: xen-devel@xxxxxxxxxxxxxxxxxxx, Jan Beulich <JBeulich@xxxxxxxx>
Delivery-date: Thu, 17 Nov 2011 06:08:49 -0800
Dkim-signature: v=1; a=rsa-sha256; c=simple/simple; d=ts.fujitsu.com; i=juergen.gross@xxxxxxxxxxxxxx; q=dns/txt; s=s1536b; t=1321538697; x=1353074697; h=message-id:date:from:mime-version:to:cc:subject: references:in-reply-to:content-transfer-encoding; bh=dL/On0Wn7Ai/CxtTDm49+G+g7Us7vlnMoEKIOg23Qeo=; b=W7g02WN0V1vBaGcNwFjiXRXGy1r2TUg79xLpJ5Qc/ZkR1oDQr0Kpy5oK 0NRmYH+SHbCCcCm2n5+IATuXSzTa/gdd9FrMZpCz8wf6d5RJQZozU9OF2 7WSoclCnin8BN3RXP+ULktx9cbogdtrhxwhBqRiM5y7B0vHmGccVoi9n7 j2kC8LE9pujwsej+7F3IGD60ZCdCBxO3rf62JVTZmjt6Cb6Ef8IyyhTqs NcFXC6aoHRBLv4Xbyhu8okwssB1kj;
Domainkey-signature: s=s1536a; d=ts.fujitsu.com; c=nofws; q=dns; h=X-SBRSScore:X-IronPort-AV:Received:X-IronPort-AV: Received:Received:Message-ID:Date:From:Organization: User-Agent:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=LAw6C2Thz3VP8H+WlEc9KkV550SDzEoOzjmAhfN3vOYPZpAK8oDz10di FkTyzgl+K8w/3epzyZu320b58LeXqWPKz1PLYZIqROTnbdYyRcAIiAQnD vqi+ISNkY0AlGoG0SHPfvovY0cvVhl+GkKum1gvyRb0ihVpkMobTJvFWj rzxL4UJqnHdKqrpwHKkkpqdMa2YrNviNckFoxLolm7TighOFbiYAqrBfM m0rc8cUbEZnzXkBgsSVAj6PEo3tR5;
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
In-reply-to: <CAEAC230.25135%keir.xen@xxxxxxxxx>
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/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Organization: Fujitsu Technology Solutions
References: <CAEAC230.25135%keir.xen@xxxxxxxxx>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.23) Gecko/20111010 Iceowl/1.0b2 Icedove/3.1.15
On 11/17/2011 02:52 PM, Keir Fraser wrote:
On 17/11/2011 13:30, "Jan Beulich"<JBeulich@xxxxxxxx>  wrote:

which would now associate the else with the wrong (inner) if. One
possible solution that comes to mind would be

#define for_each_domain_in_cpupool(_d,_c) \
     for_each_domain_in_cpupool (_d) \
         if ((_d)->cpupool != (_c)) \
             continue; \
         else

but I think I had seen a more clever solution to this problem, but cannot
remember/locate it right now.
Given the gcc ({}) construction, you could do a double-loop:
  for ( (_d) = rcu_dereference(domain_list);     \
        (_d) != NULL;                            \
        ({ while ((_d) = rcu_dereference((_d)->next_in_list != NULL)
              if ((_d)->cpupool == (_c)) break;
           (_d); }) )

A bit ugly. ;-) And I still worry about cpupool locking...

What about:

static inline struct domain *next_domain_in_cpupool(
    struct domain *d, struct cpupool *c)
{
    for (d = rcu_dereference(d->next_in_list); d && d->cpupool != c;
         d = rcu_dereference(d->next_in_list));
    return d;
}

#define for_each_domain_in_cpupool(_d,_c)       \
 for ( (_d) = rcu_dereference(domain_list);     \
       (_d) != NULL;                            \
       (_d) = next_domain_in_cpupool((_d), (_c)))


Juergen

--
Juergen Gross                 Principal Developer Operating Systems
PDG ES&S SWE OS6                       Telephone: +49 (0) 89 3222 2967
Fujitsu Technology Solutions              e-mail: juergen.gross@xxxxxxxxxxxxxx
Domagkstr. 28                           Internet: ts.fujitsu.com
D-80807 Muenchen                 Company details: ts.fujitsu.com/imprint.html


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