* [Qemu-devel] Patches "repository"
@ 2004-06-16 14:46 Hetz Ben Hamo
2004-06-23 12:24 ` Antony T Curtis
2004-06-27 20:00 ` [Qemu-devel] PCNet PCI NIC Antony T Curtis
0 siblings, 2 replies; 6+ messages in thread
From: Hetz Ben Hamo @ 2004-06-16 14:46 UTC (permalink / raw)
To: qemu-devel
Hi People,
I created a "patches" directory at my web site
( http://dad-answers.com/qemu/patches ) with whatever I found that it's not
committed yet..
The idea is quite simple - instead of patches which will be lost in the mail
(or the URL will be forgotten) I would like to ask people who submit patches
(don't forget to CC Fabrice) to send them to me or to this list with a small
"readme" file which explains what is this patch, patching instructions if
needed, and against which CVS check (or snapshot) you made this patch.
Once Fabrice will commit your patch, I will remove it from the directory...
Thanks,
Hetz
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Patches "repository"
2004-06-16 14:46 [Qemu-devel] Patches "repository" Hetz Ben Hamo
@ 2004-06-23 12:24 ` Antony T Curtis
2004-06-24 14:08 ` Hetz Ben Hamo
2004-06-27 20:00 ` [Qemu-devel] PCNet PCI NIC Antony T Curtis
1 sibling, 1 reply; 6+ messages in thread
From: Antony T Curtis @ 2004-06-23 12:24 UTC (permalink / raw)
To: hetz, qemu-devel
[-- Attachment #1: Type: text/plain, Size: 549 bytes --]
On Wed, 2004-06-16 at 15:46, Hetz Ben Hamo wrote:
> Hi People,
>
> I created a "patches" directory at my web site
> ( http://dad-answers.com/qemu/patches ) with whatever I found that it's not
> committed yet..
Here is my diff against the current CVS...
What it does
. Misc fixes for compiling on FreeBSD
. Uses long double on FreeBSD (doesn't fix bugs arith bugs)
. Adds support for using FreeBSD devices
. Adds support for ISA-PnP + patch for ne2000
. Includes ppc-softmmu in FreeBSD build
--
Antony T Curtis <antony.t.curtis@ntlworld.com>
[-- Attachment #2: qemu-atc.2.patch.gz --]
[-- Type: application/x-gzip, Size: 14974 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Patches "repository"
2004-06-23 12:24 ` Antony T Curtis
@ 2004-06-24 14:08 ` Hetz Ben Hamo
0 siblings, 0 replies; 6+ messages in thread
From: Hetz Ben Hamo @ 2004-06-24 14:08 UTC (permalink / raw)
To: Antony T Curtis; +Cc: qemu-devel
> Here is my diff against the current CVS...
>
> What it does
> . Misc fixes for compiling on FreeBSD
> . Uses long double on FreeBSD (doesn't fix bugs arith bugs)
> . Adds support for using FreeBSD devices
> . Adds support for ISA-PnP + patch for ne2000
> . Includes ppc-softmmu in FreeBSD build
I added your patch to the web site.
Thanks,
Hetz
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] PCNet PCI NIC
2004-06-16 14:46 [Qemu-devel] Patches "repository" Hetz Ben Hamo
2004-06-23 12:24 ` Antony T Curtis
@ 2004-06-27 20:00 ` Antony T Curtis
2004-06-27 20:37 ` Gianni Tedesco
2004-06-27 23:33 ` [Qemu-devel] " Hetz Ben Hamo
1 sibling, 2 replies; 6+ messages in thread
From: Antony T Curtis @ 2004-06-27 20:00 UTC (permalink / raw)
To: hetz, qemu-devel
[-- Attachment #1: Type: text/plain, Size: 515 bytes --]
Here is a patch against a recent QEMU CVS to emulate an AMD PC-Net II
PCI ethernet adaptor. It is a bus-mastering adaptor with both 16bit and
32bit modes.
This patch adds a new command line option "-nic-pcnet" which enables the
this NIC emulation instead of the NE2000 nic.
ERRATA:
1. currently does not fully implement automatic tx ring polling...
Polling may only occur when another event 'triggers' it such as packet
receive, transmit or device i/o
Enjoy!
--
Antony T Curtis <antony.t.curtis@ntlworld.com>
[-- Attachment #2: qemu-pcnet.patch.gz --]
[-- Type: application/x-gzip, Size: 15130 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] PCNet PCI NIC
2004-06-27 20:00 ` [Qemu-devel] PCNet PCI NIC Antony T Curtis
@ 2004-06-27 20:37 ` Gianni Tedesco
2004-06-27 23:33 ` [Qemu-devel] " Hetz Ben Hamo
1 sibling, 0 replies; 6+ messages in thread
From: Gianni Tedesco @ 2004-06-27 20:37 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 850 bytes --]
On Sun, 2004-06-27 at 21:00 +0100, Antony T Curtis wrote:
> Here is a patch against a recent QEMU CVS to emulate an AMD PC-Net II
> PCI ethernet adaptor. It is a bus-mastering adaptor with both 16bit and
> 32bit modes.
>
> This patch adds a new command line option "-nic-pcnet" which enables the
> this NIC emulation instead of the NE2000 nic.
Sounds cool :)
> ERRATA:
> 1. currently does not fully implement automatic tx ring polling...
> Polling may only occur when another event 'triggers' it such as packet
> receive, transmit or device i/o
Can't you use a qemu vtimer for this, or is the frequency too high for
that to be performant?
--
// Gianni Tedesco (gianni at scaramanga dot co dot uk)
lynx --source www.scaramanga.co.uk/scaramanga.asc | gpg --import
8646BE7D: 6D9F 2287 870E A2C9 8F60 3A3C 91B5 7669 8646 BE7D
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] Re: PCNet PCI NIC
2004-06-27 20:00 ` [Qemu-devel] PCNet PCI NIC Antony T Curtis
2004-06-27 20:37 ` Gianni Tedesco
@ 2004-06-27 23:33 ` Hetz Ben Hamo
1 sibling, 0 replies; 6+ messages in thread
From: Hetz Ben Hamo @ 2004-06-27 23:33 UTC (permalink / raw)
To: Antony T Curtis; +Cc: qemu-devel
Patch added to web site: http://www.dad-answers.com/qemu/patches/
Thanks,
Hetz
Antony T Curtis wrote:
> Here is a patch against a recent QEMU CVS to emulate an AMD PC-Net II
> PCI ethernet adaptor. It is a bus-mastering adaptor with both 16bit and
> 32bit modes.
>
> This patch adds a new command line option "-nic-pcnet" which enables the
> this NIC emulation instead of the NE2000 nic.
>
> ERRATA:
> 1. currently does not fully implement automatic tx ring polling...
> Polling may only occur when another event 'triggers' it such as packet
> receive, transmit or device i/o
>
> Enjoy!
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2004-06-27 22:35 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-06-16 14:46 [Qemu-devel] Patches "repository" Hetz Ben Hamo
2004-06-23 12:24 ` Antony T Curtis
2004-06-24 14:08 ` Hetz Ben Hamo
2004-06-27 20:00 ` [Qemu-devel] PCNet PCI NIC Antony T Curtis
2004-06-27 20:37 ` Gianni Tedesco
2004-06-27 23:33 ` [Qemu-devel] " Hetz Ben Hamo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).