|
|
|
|
|
|
|
|
|
|
xen-ppc-devel
[XenPPC] [pushed][ppc] evtchn_upcall_pending need to be unsigned log for
changeset: 22039:aaab77f6d562
user: jimix@xxxxxxxxxxxxxxxxxxxxx
date: Thu Mar 23 16:42:35 2006 -0500
summary: [ppc] evtchn_upcall_pending need to be unsigned log for bitops
diff -r 05a141988d9e -r aaab77f6d562 include/xen/interface/xen.h
--- a/include/xen/interface/xen.h Thu Mar 23 16:41:49 2006 -0500
+++ b/include/xen/interface/xen.h Thu Mar 23 16:42:35 2006 -0500
@@ -312,7 +312,11 @@ typedef struct vcpu_info {
* an upcall activation. The mask is cleared when the VCPU requests
* to block: this avoids wakeup-waiting races.
*/
- uint8_t evtchn_upcall_pending;
+#if defined(__powerpc__)
+ unsigned long evtchn_upcall_pending;
+#else
+ uint8_t evtchn_upcall_pending;
+#endif
uint8_t evtchn_upcall_mask;
unsigned long evtchn_pending_sel;
arch_vcpu_info_t arch;
_______________________________________________
Xen-ppc-devel mailing list
Xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ppc-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [XenPPC] [pushed][ppc] evtchn_upcall_pending need to be unsigned log for bitops,
jimix <=
|
|
|
|
|