aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/multicall.h
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-01-27 16:16:52 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-01-27 16:16:52 +0100
commit135eb3225f67f5bf76610c3f2d5f395a26efb547 (patch)
tree817e1ef73f09588540e016bc2fa721ee7a6f41b7 /xen/include/xen/multicall.h
parentda322cd0ddfd79757f19f29911c15b36f365fe4a (diff)
downloadxen-135eb3225f67f5bf76610c3f2d5f395a26efb547.tar.gz
xen-135eb3225f67f5bf76610c3f2d5f395a26efb547.tar.bz2
xen-135eb3225f67f5bf76610c3f2d5f395a26efb547.zip
Uniform definition of do_iret prototype. Use 'struct foo'
in various places instead of 'foo_t'. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/include/xen/multicall.h')
-rw-r--r--xen/include/xen/multicall.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/include/xen/multicall.h b/xen/include/xen/multicall.h
index 5982471330..216e2104ee 100644
--- a/xen/include/xen/multicall.h
+++ b/xen/include/xen/multicall.h
@@ -12,8 +12,8 @@
#define MCSF_in_multicall (1<<_MCSF_in_multicall)
#define MCSF_call_preempted (1<<_MCSF_call_preempted)
struct mc_state {
- unsigned long flags;
- multicall_entry_t call;
+ unsigned long flags;
+ struct multicall_entry call;
} __cacheline_aligned;
extern struct mc_state mc_state[NR_CPUS];