Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 70928
b: refs/heads/master
c: 91e0c5f
h: refs/heads/master
v: v3
  • Loading branch information
Jeremy Fitzhardinge authored and Jeremy Fitzhardinge committed Oct 16, 2007
1 parent 16f0bf9 commit 1993502
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f0d733942750c1ee6358c3a4a1a5d7ba73b7122f
refs/heads/master: 91e0c5f3dad47838cb2ecc1865ce789a0b7182b1
29 changes: 26 additions & 3 deletions trunk/arch/x86/xen/multicalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@
struct mc_buffer {
struct multicall_entry entries[MC_BATCH];
u64 args[MC_ARGS];
unsigned mcidx, argidx;
struct callback {
void (*fn)(void *);
void *data;
} callbacks[MC_BATCH];
unsigned mcidx, argidx, cbidx;
};

static DEFINE_PER_CPU(struct mc_buffer, mc_buffer);
Expand All @@ -43,6 +47,7 @@ void xen_mc_flush(void)
struct mc_buffer *b = &__get_cpu_var(mc_buffer);
int ret = 0;
unsigned long flags;
int i;

BUG_ON(preemptible());

Expand All @@ -51,8 +56,6 @@ void xen_mc_flush(void)
local_irq_save(flags);

if (b->mcidx) {
int i;

if (HYPERVISOR_multicall(b->entries, b->mcidx) != 0)
BUG();
for (i = 0; i < b->mcidx; i++)
Expand All @@ -65,6 +68,13 @@ void xen_mc_flush(void)

local_irq_restore(flags);

for(i = 0; i < b->cbidx; i++) {
struct callback *cb = &b->callbacks[i];

(*cb->fn)(cb->data);
}
b->cbidx = 0;

BUG_ON(ret);
}

Expand All @@ -88,3 +98,16 @@ struct multicall_space __xen_mc_entry(size_t args)

return ret;
}

void xen_mc_callback(void (*fn)(void *), void *data)
{
struct mc_buffer *b = &__get_cpu_var(mc_buffer);
struct callback *cb;

if (b->cbidx == MC_BATCH)
xen_mc_flush();

cb = &b->callbacks[b->cbidx++];
cb->fn = fn;
cb->data = data;
}
3 changes: 3 additions & 0 deletions trunk/arch/x86/xen/multicalls.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,7 @@ static inline void xen_mc_issue(unsigned mode)
local_irq_restore(x86_read_percpu(xen_mc_irq_flags));
}

/* Set up a callback to be called when the current batch is flushed */
void xen_mc_callback(void (*fn)(void *), void *data);

#endif /* _XEN_MULTICALLS_H */

0 comments on commit 1993502

Please sign in to comment.