Re: [kvm-devel] [PATCH 1/6] Add support for eventfd() (v3)

2008-05-08 Thread Avi Kivity
Anthony Liguori wrote: This patch adds compatibility code so that we can make use of eventfd() within QEMU. eventfd() is a pretty useful mechanism as it allows multiple notifications to be batched in a single system call. We emulate eventfd() using a standard pipe(). Applied all six

[kvm-devel] [PATCH 1/6] Add support for eventfd() (v3)

2008-05-07 Thread Anthony Liguori
This patch adds compatibility code so that we can make use of eventfd() within QEMU. eventfd() is a pretty useful mechanism as it allows multiple notifications to be batched in a single system call. We emulate eventfd() using a standard pipe(). Signed-off-by: Anthony Liguori [EMAIL PROTECTED]