Re: [Qemu-devel] [PATCH] rewrote timer implementation for rtl8139.

2010-02-25 Thread Paul Brook
> +++ b/hw/rtl8139.c > @@ -41,6 +41,10 @@ > * segmentation offloading > * Removed slirp.h dependency > * Added rx/tx buffer reset when enabling > rx/tx operation + * > + * 2010-Feb-04 Fredian

[Qemu-devel] [PATCH] rewrote timer implementation for rtl8139.

2010-02-20 Thread Frediano Ziglio
Add a QEMU timer only when needed (timeout status not set, timeout irq wanted and timer set). This patch is required for Darwin. Patch has been tested under FreeBSD, Darwin and Linux. Signed-off-by: Frediano Ziglio --- hw/rtl8139.c | 139 +++-

[Qemu-devel] [PATCH] rewrote timer implementation for rtl8139.

2010-02-20 Thread Frediano Ziglio
Add a QEMU timer only when needed (timeout status not set, timeout irq wanted and timer set). This patch is required for Darwin. Patch has been tested under FreeBSD, Darwin and Linux. --- hw/rtl8139.c | 139 +++--- 1 files changed, 84 insertion

Re: [Qemu-devel] [PATCH] rewrote timer implementation for rtl8139.

2010-02-20 Thread Anthony Liguori
On 02/20/2010 10:06 AM, Frediano Ziglio wrote: Add a QEMU timer only when needed (timeout status not set, timeout irq wanted and timer set). This patch is required for Darwin. Patch has been tested under FreeBSD, Darwin and Linux. This is missing a Signed-off-by. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] rewrote timer implementation for rtl8139.

2010-02-20 Thread Frediano Ziglio
2010/2/20 Igor Kovalenko : > On Sat, Feb 20, 2010 at 2:26 AM, Anthony Liguori > wrote: >> On 02/19/2010 04:22 PM, Alexander Graf wrote: >>> >>> On 19.02.2010, at 22:50, Anthony Liguori wrote: >>> >>> On 02/16/2010 02:35 AM, Frediano Ziglio wrote: > > Add a QEMU timer only w

[Qemu-devel] [PATCH] rewrote timer implementation for rtl8139.

2010-02-20 Thread Frediano Ziglio
Add a QEMU timer only when needed (timeout status not set, timeout irq wanted and timer set). This patch is required for Darwin. Patch has been tested under FreeBSD, Darwin and Linux. --- hw/rtl8139.c | 139 +++--- 1 files changed, 84 insertion

Re: [Qemu-devel] [PATCH] rewrote timer implementation for rtl8139.

2010-02-19 Thread Igor Kovalenko
On Sat, Feb 20, 2010 at 2:26 AM, Anthony Liguori wrote: > On 02/19/2010 04:22 PM, Alexander Graf wrote: >> >> On 19.02.2010, at 22:50, Anthony Liguori wrote: >> >> >>> >>> On 02/16/2010 02:35 AM, Frediano Ziglio wrote: >>> Add a QEMU timer only when needed (timeout status not set, timeou

Re: [Qemu-devel] [PATCH] rewrote timer implementation for rtl8139.

2010-02-19 Thread Anthony Liguori
On 02/19/2010 04:22 PM, Alexander Graf wrote: On 19.02.2010, at 22:50, Anthony Liguori wrote: On 02/16/2010 02:35 AM, Frediano Ziglio wrote: Add a QEMU timer only when needed (timeout status not set, timeout irq wanted and timer set). This patch is required for Darwin. Patch has bee

Re: [Qemu-devel] [PATCH] rewrote timer implementation for rtl8139.

2010-02-19 Thread Anthony Liguori
On 02/16/2010 02:35 AM, Frediano Ziglio wrote: Add a QEMU timer only when needed (timeout status not set, timeout irq wanted and timer set). This patch is required for Darwin. Patch has been tested under FreeBSD, Darwin and Linux. Signed-off-by: Frediano Ziglio --- hw/rtl8139.c | 136 +++

Re: [Qemu-devel] [PATCH] rewrote timer implementation for rtl8139.

2010-02-19 Thread Alexander Graf
On 19.02.2010, at 22:50, Anthony Liguori wrote: > On 02/16/2010 02:35 AM, Frediano Ziglio wrote: >> Add a QEMU timer only when needed (timeout status not set, timeout >> irq wanted and timer set). >> >> This patch is required for Darwin. Patch has been tested under >> FreeBSD, Darwin and Linux.

Re: [Qemu-devel] [PATCH] rewrote timer implementation for rtl8139.

2010-02-19 Thread Anthony Liguori
On 02/16/2010 02:35 AM, Frediano Ziglio wrote: Add a QEMU timer only when needed (timeout status not set, timeout irq wanted and timer set). This patch is required for Darwin. Patch has been tested under FreeBSD, Darwin and Linux. Signed-off-by: Frediano Ziglio Alex, I know you've played

[Qemu-devel] [PATCH] rewrote timer implementation for rtl8139.

2010-02-16 Thread Frediano Ziglio
Add a QEMU timer only when needed (timeout status not set, timeout irq wanted and timer set). This patch is required for Darwin. Patch has been tested under FreeBSD, Darwin and Linux. Signed-off-by: Frediano Ziglio --- hw/rtl8139.c | 136 ++--

[Qemu-devel] [PATCH] rewrote timer implementation for rtl8139. Add a QEMU timer only when needed (timeout status not set, timeout irq wanted and timer set).

2010-02-09 Thread Frediano Ziglio
Signed-off-by: Frediano Ziglio --- hw/rtl8139.c | 136 ++--- 1 files changed, 81 insertions(+), 55 deletions(-) diff --git a/hw/rtl8139.c b/hw/rtl8139.c index f04dd54..e43c15c 100644 --- a/hw/rtl8139.c +++ b/hw/rtl8139.c @@ -41,6 +41,10 @@