xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/2]: xl: Fix xl vcpu-list output on machines with more than 16 cores
@ 2010-08-10 13:54 Andre Przywara
  2010-08-10 14:35 ` Stefano Stabellini
  0 siblings, 1 reply; 2+ messages in thread
From: Andre Przywara @ 2010-08-10 13:54 UTC (permalink / raw)
  To: Keir Fraser, Stefano Stabellini; +Cc: xen-devel

[-- Attachment #1: Type: text/plain, Size: 162 bytes --]

Signed-off-by: Andre Przywara <andre.przywara@amd.com>

-- 
Andre Przywara
AMD-Operating System Research Center (OSRC), Dresden, Germany
Tel: +49 351 448-3567-12

[-- Attachment #2: xl_vcpu_list_2.patch --]
[-- Type: text/x-patch, Size: 835 bytes --]

commit 28e6203e49e733d0777ed22b96763a58b9f8f16d
Author: Andre Przywara <andre.przywara@amd.com>
Date:   Tue Aug 10 15:48:46 2010 +0200

    xl: Fix xl vcpu-list output on machines with more than 16 cores
    
    Signed-off-by: Andre Przywara <andre.przywara@amd.com>

diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c
index e0bdf0c..7fee1ca 100644
--- a/tools/libxl/xl_cmdimpl.c
+++ b/tools/libxl/xl_cmdimpl.c
@@ -3201,7 +3201,7 @@ static void print_vcpuinfo(uint32_t tdomid,
     /*      TIM */
     printf("%9.1f  ", ((float)vcpuinfo->vcpu_time / 1e9));
     /* CPU AFFINITY */
-    pcpumap = nr_cpus > 64 ? -1 : ((1 << nr_cpus) - 1);
+    pcpumap = nr_cpus > 64 ? (uint64_t)-1 : ((1ULL << nr_cpus) - 1);
     for (cpumap = vcpuinfo->cpumap; nr_cpus; ++cpumap) {
         if (*cpumap < pcpumap) {
             break;

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

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

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 2/2]: xl: Fix xl vcpu-list output on machines with more than 16 cores
  2010-08-10 13:54 [PATCH 2/2]: xl: Fix xl vcpu-list output on machines with more than 16 cores Andre Przywara
@ 2010-08-10 14:35 ` Stefano Stabellini
  0 siblings, 0 replies; 2+ messages in thread
From: Stefano Stabellini @ 2010-08-10 14:35 UTC (permalink / raw)
  To: Andre Przywara; +Cc: xen-devel, Keir Fraser, Stefano Stabellini

On Tue, 10 Aug 2010, Andre Przywara wrote:
> Signed-off-by: Andre Przywara <andre.przywara@amd.com>
> 
applied, thanks

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-08-10 14:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-10 13:54 [PATCH 2/2]: xl: Fix xl vcpu-list output on machines with more than 16 cores Andre Przywara
2010-08-10 14:35 ` Stefano Stabellini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).