All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH]misc:fix build error
@ 2010-05-05  4:04 Yang Hongyang
  0 siblings, 0 replies; only message in thread
From: Yang Hongyang @ 2010-05-05  4:04 UTC (permalink / raw)
  To: xen-devel@lists.xensource.com

changeset 21259:f7605c6c9548 changes the global suspend event channel lock file
to a per-domain lock file, but do not update xc_suspend_evtchn_release() call in
misc/hp-tool.c. So I got a build error when building tools. The patch fix this.

Signed-off-by: Yang Hongyang <yanghy@cn.fujitsu.com>

diff -r efa1b905d893 tools/misc/xen-hptool.c
--- a/tools/misc/xen-hptool.c	Tue May 04 13:59:55 2010 +0100
+++ b/tools/misc/xen-hptool.c	Wed May 05 19:56:51 2010 +0800
@@ -133,7 +133,7 @@
 
 failed:
     if (suspend_evtchn != -1)
-        xc_suspend_evtchn_release(xce, suspend_evtchn);
+        xc_suspend_evtchn_release(xce, domid, suspend_evtchn);
 
     return -1;
 }
@@ -228,7 +228,7 @@
                                 mfn, domid);
                     }
                     xc_domain_resume(xc_fd, domid, 1);
-                    xc_suspend_evtchn_release(xce, suspend_evtchn);
+                    xc_suspend_evtchn_release(xce, domid, suspend_evtchn);
                     xc_evtchn_close(xce);
                 }
                 break;

-- 
Regards
Yang Hongyang

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-05-05  4:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-05  4:04 [PATCH]misc:fix build error Yang Hongyang

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.