direct-io.hg
annotate linux-2.6-xen-sparse/include/xen/xencons.h @ 11509:2e6c10dc7c0b
[POWERPC][XEN] make sure put_domain() is called in case of allocate_rma() failuer
Signed-off-by: Jimi Xenidis <jimix@watson.ibm.com>
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
Signed-off-by: Jimi Xenidis <jimix@watson.ibm.com>
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
author | Jimi Xenidis <jimix@watson.ibm.com> |
---|---|
date | Tue Sep 12 10:53:46 2006 -0400 (2006-09-12) |
parents | fd9b2c1bb577 |
children | d8bceca5f07d |
rev | line source |
---|---|
kaf24@7830 | 1 #ifndef __ASM_XENCONS_H__ |
kaf24@7830 | 2 #define __ASM_XENCONS_H__ |
kaf24@7830 | 3 |
kaf24@7830 | 4 void xencons_force_flush(void); |
kaf24@7830 | 5 void xencons_resume(void); |
kaf24@7830 | 6 |
kaf24@8168 | 7 /* Interrupt work hooks. Receive data, or kick data out. */ |
kaf24@8168 | 8 void xencons_rx(char *buf, unsigned len, struct pt_regs *regs); |
kaf24@8168 | 9 void xencons_tx(void); |
kaf24@8168 | 10 |
kaf24@8168 | 11 int xencons_ring_init(void); |
kaf24@8168 | 12 int xencons_ring_send(const char *data, unsigned len); |
kaf24@8168 | 13 |
kaf24@7830 | 14 #endif /* __ASM_XENCONS_H__ */ |