76f30473 | 05-Jul-2011 |
Gerd Hoffmann <kraxel@redhat.com> |
usb: update documentation
Add a paragraph on companion controller mode and a configuration file which sets it all up for you.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> |
f72e502e | 31-May-2011 |
Gerd Hoffmann <kraxel@redhat.com> |
usb: documentation update
Add some more informations to docs/usb2.txt about using usb2 (also usb1) devices.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> |
23bf93b2 | 07-Jun-2011 |
Markus Armbruster <armbru@redhat.com> |
docs: qdev-device-use.txt has become stale, update it
Document more bus addresses.
Update for bugs fixed.
Describe where exactly the -drive options go.
Update for recent split of qdev ide-drive i
docs: qdev-device-use.txt has become stale, update it
Document more bus addresses.
Update for bugs fixed.
Describe where exactly the -drive options go.
Update for recent split of qdev ide-drive into ide-{cd,hd}, scsi-disk into scsi-{cd,hd}.
Document scsi-hd's removable property only for usb-storage, because that's where it's used.
Fix description of -global isa.fdc.
Document usb-storage lossage.
Clean up misleading description of network device's split into guest and host part.
Document -vga's machine dependence.
New qdevs: virtconsole, qxl-vga, isa-vga, intel-hda, usb-ccid
Update for changed pci-assign property iommu.
New section "Default Devices".
Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
show more ...
|
94527ead | 03-Dec-2010 |
Gerd Hoffmann <kraxel@redhat.com> |
usb: add ehci adapter
This patch finally merges the EHCI host adapter aka USB 2.0 support.
Based on the ehci bits collected @ git://git.kiszka.org/qemu.git ehci
EHCI has a long out-of-tree history
usb: add ehci adapter
This patch finally merges the EHCI host adapter aka USB 2.0 support.
Based on the ehci bits collected @ git://git.kiszka.org/qemu.git ehci
EHCI has a long out-of-tree history. Project was started by Mark Burkley, with contributions by Niels de Vos. David S. Ahern continued working on it. Kevin Wolf, Jan Kiszka and Vincent Palatin contributed bugfixes.
/me (Gerd Hoffmann) picked it up where it left off, prepared the code for merge, fixed a few bugs and added basic user docs.
Cc: David S. Ahern <daahern@cisco.com> Cc: Jan Kiszka <jan.kiszka@web.de> Cc: Kevin Wolf <mail@kevin-wolf.de> Cc: Vincent Palatin <vincent.palatin_qemu@m4x.org> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
show more ...
|
7b92e5bc | 06-Apr-2011 |
Lluís <xscript@gmx.net> |
docs/tracing.txt: minor documentation fixes
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
e6a750aa | 14-Apr-2011 |
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
docs: Trace events must not expect pointer dereferencing
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
d54f10bb | 17-Dec-2010 |
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
docs: Describe zero data clusters in QED specification
Zero data clusters are a space-efficient way of storing zeroed regions of the image.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.c
docs: Describe zero data clusters in QED specification
Zero data clusters are a space-efficient way of storing zeroed regions of the image.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
show more ...
|
1056c02b | 12-Dec-2010 |
Alon Levy <alevy@redhat.com> |
ccid: add docs
Add documentation for the usb-ccid device and accompanying two card devices, ccid-card-emulated and ccid-card-passthru.
Signed-off-by: Alon Levy <alevy@redhat.com> |
65794b43 | 17-Mar-2011 |
Robert Relyea <rrelyea@redhat.com> |
libcacard: add docs |
03feae73 | 14-Feb-2011 |
Kevin Wolf <kwolf@redhat.com> |
Add qcow2 documentation
This adds a description of the qcow2 file format to the docs/ directory. Besides documenting what's there, which is never wrong, the document should provide a good basis for
Add qcow2 documentation
This adds a description of the qcow2 file format to the docs/ directory. Besides documenting what's there, which is never wrong, the document should provide a good basis for the discussion of format extensions (called "qcow3" in previous discussions)
Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
show more ...
|
0b5538c3 | 26-Feb-2011 |
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
simpletrace: Thread-safe tracing
Trace events outside the global mutex cannot be used with the simple trace backend since it is not thread-safe. There is no check to prevent them being enabled so p
simpletrace: Thread-safe tracing
Trace events outside the global mutex cannot be used with the simple trace backend since it is not thread-safe. There is no check to prevent them being enabled so people sometimes learn this the hard way.
This patch restructures the simple trace backend with a ring buffer suitable for multiple concurrent writers. A writeout thread empties the trace buffer when threshold fill levels are reached. Should the writeout thread be unable to keep up with trace generation, records will simply be dropped.
Each time events are dropped a special record is written to the trace file indicating how many events were dropped. The event ID is 0xfffffffffffffffe and its signature is dropped(uint32_t count).
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
show more ...
|
b48c20f7 | 23-Feb-2011 |
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
docs: Update stderr and simple backend, add systemtap backend
The following additions to the tracing documentation are included:
1. Move "stderr" backend documentation to top-level and out of "simp
docs: Update stderr and simple backend, add systemtap backend
The following additions to the tracing documentation are included:
1. Move "stderr" backend documentation to top-level and out of "simple" backend. Include hints on when this backend is useful.
2. Document the "simple" backend thread-safety limitation.
3. Document the "dtrace" backend for SystemTap.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
show more ...
|
466b5864 | 30-Jan-2011 |
Gleb Natapov <gleb@redhat.com> |
Add boot index documentation.
Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> |
320fba2a | 27-Jan-2011 |
Fabien Chouteau <chouteau@adacore.com> |
New trace-event backend: stderr
This backend sends trace events to standard error output during the emulation.
Also add a "--list-backends" option to tracetool, so configure script can display the
New trace-event backend: stderr
This backend sends trace events to standard error output during the emulation.
Also add a "--list-backends" option to tracetool, so configure script can display the list of available backends.
Signed-off-by: Fabien Chouteau <chouteau@adacore.com> Acked-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
show more ...
|
a5c062ed | 24-Jan-2011 |
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
docs: Document scsi-disk and usb-storage removable parameter
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com> |
9c046d96 | 11-Jan-2011 |
Marcelo Tosatti <mtosatti@redhat.com> |
document QEMU<->ACPIBIOS PCI hotplug interface
Document how QEMU communicates with ACPI BIOS for PCI hotplug.
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Michael S. Tsirkin
document QEMU<->ACPIBIOS PCI hotplug interface
Document how QEMU communicates with ACPI BIOS for PCI hotplug.
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
show more ...
|
65d6dcbd | 17-Dec-2010 |
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
docs: Document virtio PCI -device ioeventfd=on|off
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
e59d688a | 17-Dec-2010 |
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
docs: Fix missing carets in QED specification
For some reason the carets ('^') in the QED specification disappeared. This patch puts them back.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.i
docs: Fix missing carets in QED specification
For some reason the carets ('^') in the QED specification disappeared. This patch puts them back.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
show more ...
|
71af014f | 06-Dec-2010 |
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
docs: Add QED image format specification
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com> |
cf85cf8e | 20-Oct-2010 |
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
trace: Format strings must begin/end with double quotes
Document the restriction that format strings must begin and end with double quotes. This is for easy parsing since we don't run cpp over trac
trace: Format strings must begin/end with double quotes
Document the restriction that format strings must begin and end with double quotes. This is for easy parsing since we don't run cpp over trace-events.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
show more ...
|
9a85d394 | 05-Oct-2010 |
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
trace: Use portable format strings
It is not portable to use "%ld" for int64_t because int64_t may have type long on 64-bit platforms and long long on 32-bit platforms. Use the standard library PRI
trace: Use portable format strings
It is not portable to use "%ld" for int64_t because int64_t may have type long on 64-bit platforms and long long on 32-bit platforms. Use the standard library PRId64 macros to keep format strings portable.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
show more ...
|
dda5336e | 01-Aug-2010 |
Stefan Weil <weil@mail.berlios.de> |
docs: Improve documentation
Fix some inconsistencies (tabs and punctuation) and try to improve grammar and spelling.
Cc: Juan Quintela <quintela@redhat.com> Signed-off-by: Stefan Weil <weil@mail.be
docs: Improve documentation
Fix some inconsistencies (tabs and punctuation) and try to improve grammar and spelling.
Cc: Juan Quintela <quintela@redhat.com> Signed-off-by: Stefan Weil <weil@mail.berlios.de>
show more ...
|
d9d33417 | 21-Sep-2010 |
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
blkverify: Add block driver for verifying I/O
The blkverify block driver makes investigating image format data corruption much easier. A raw image initialized with the same contents as the test ima
blkverify: Add block driver for verifying I/O
The blkverify block driver makes investigating image format data corruption much easier. A raw image initialized with the same contents as the test image (e.g. qcow2 file) must be provided. The raw image mirrors read/write operations and is used to verify that data read from the test image is correct.
See docs/blkverify.txt for more information.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
show more ...
|
81a97d9d | 22-Jun-2010 |
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
trace: Add user documentation
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> |
b6828931 | 26-Jul-2010 |
Cam Macdonell <cam@cs.ualberta.ca> |
Device specification for shared memory PCI device
Signed-off-by: Cam Macdonell <cam@cs.ualberta.ca> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> |