]> git.proxmox.com Git - mirror_qemu.git/commitdiff
Replace Qemu by QEMU in internal documentation
authorStefan Weil <sw@weilnetz.de>
Sat, 7 Apr 2012 07:23:37 +0000 (09:23 +0200)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 7 Apr 2012 13:58:25 +0000 (13:58 +0000)
The official spelling is QEMU.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
CODING_STYLE
docs/ccid.txt
docs/specs/ivshmem_device_spec.txt
target-alpha/STATUS
target-mips/TODO

index 7c82d4d0af02db01c625f401738c064264784808..dcbce28a27cd2a94c2b6133e89dfd0698da080b5 100644 (file)
@@ -1,4 +1,4 @@
-Qemu Coding Style
+QEMU Coding Style
 =================
 
 Please use the script checkpatch.pl in the scripts directory to check
index b8e504a3cc4a34d050c13f31f000e243f265723c..450a66ad99757b7c5a6091aed75c775841503335 100644 (file)
@@ -1,4 +1,4 @@
-Qemu CCID Device Documentation.
+QEMU CCID Device Documentation.
 
 Contents
 1. USB CCID device
index 23dd2ba89f365d61bc9fd206965a7ad167398b16..667a8628f04cd6f783bd949dabb466bc1fb5203e 100644 (file)
@@ -24,7 +24,7 @@ The device currently supports 4 registers of 32-bits each.  Registers
 are used for synchronization between guests sharing the same memory object when
 interrupts are supported (this requires using the shared memory server).
 
-The server assigns each VM an ID number and sends this ID number to the Qemu
+The server assigns each VM an ID number and sends this ID number to the QEMU
 process when the guest starts.
 
 enum ivshmem_registers {
index 742e370b90fe226e4daea4bb77291183873c8da3..6c9744569e0f20b0c273692588c1837f7b61ac00 100644 (file)
@@ -4,7 +4,7 @@ Alpha emulation structure:
 cpu.h           : CPU definitions globally exported
 exec.h          : CPU definitions used only for translated code execution
 helper.c        : helpers that can be called either by the translated code
-                  or the Qemu core, including the exception handler.
+                  or the QEMU core, including the exception handler.
 op_helper.c     : helpers that can be called only from TCG
 helper.h        : TCG helpers prototypes
 translate.c     : Alpha instructions to micro-operations translator
index 9101881a97cb2584d31d9b1341c62366e0c93189..2a3546f6247cc98ec6a5c2991fe6085900ecc237 100644 (file)
@@ -16,7 +16,7 @@ General
   Existing documentation is x86-centric.
 - Reverse endianness bit not implemented
 - The TLB emulation is very inefficient:
-  Qemu's softmmu implements a x86-style MMU, with separate entries
+  QEMU's softmmu implements a x86-style MMU, with separate entries
   for read/write/execute, a TLB index which is just a modulo of the
   virtual address, and a set of TLBs for each user/kernel/supervisor
   MMU mode.
@@ -25,7 +25,7 @@ General
   up to 256 ASID tags as additional matching criterion (which roughly
   equates to 256 MMU modes). It also has a global flag which causes
   entries to match regardless of ASID.
-  To cope with these differences, Qemu currently flushes the TLB at
+  To cope with these differences, QEMU currently flushes the TLB at
   each ASID change. Using the MMU modes to implement ASIDs hinges on
   implementing the global bit efficiently.
 - save/restore of the CPU state is not implemented (see machine.c).