From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K3cYA-0004EY-BN for qemu-devel@nongnu.org; Tue, 03 Jun 2008 15:52:06 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K3cY5-0004CB-5H for qemu-devel@nongnu.org; Tue, 03 Jun 2008 15:52:01 -0400 Received: from [199.232.76.173] (port=36290 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K3cY5-0004C0-1y for qemu-devel@nongnu.org; Tue, 03 Jun 2008 15:52:01 -0400 Received: from savannah.gnu.org ([199.232.41.3]:46461 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1K3cY4-000817-Uy for qemu-devel@nongnu.org; Tue, 03 Jun 2008 15:52:01 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1K3cY2-0005je-Ss for qemu-devel@nongnu.org; Tue, 03 Jun 2008 19:51:58 +0000 Received: from ths by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1K3cY2-0005jX-44 for qemu-devel@nongnu.org; Tue, 03 Jun 2008 19:51:58 +0000 MIME-Version: 1.0 Errors-To: ths Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Thiemo Seufer Message-Id: Date: Tue, 03 Jun 2008 19:51:58 +0000 Subject: [Qemu-devel] [4655] Spelling fixes, by Stefan Weil. Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 4655 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4655 Author: ths Date: 2008-06-03 19:51:57 +0000 (Tue, 03 Jun 2008) Log Message: ----------- Spelling fixes, by Stefan Weil. Modified Paths: -------------- trunk/exec-all.h trunk/hw/alpha_palcode.c trunk/hw/integratorcp.c trunk/hw/realview.c trunk/hw/scsi-disk.c trunk/hw/versatilepb.c trunk/linux-user/path.c trunk/linux-user/qemu.h trunk/qemu-tech.texi trunk/target-i386/cpu.h trunk/target-i386/op_helper.c trunk/target-ppc/translate.c trunk/tcg/tcg.c Modified: trunk/exec-all.h =================================================================== --- trunk/exec-all.h 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/exec-all.h 2008-06-03 19:51:57 UTC (rev 4655) @@ -216,7 +216,7 @@ { /* patch the branch destination */ *(uint32_t *)jmp_addr = addr - (jmp_addr + 4); - /* no need to flush icache explicitely */ + /* no need to flush icache explicitly */ } #elif defined(__arm__) static inline void tb_set_jmp_target1(unsigned long jmp_addr, unsigned long addr) Modified: trunk/hw/alpha_palcode.c =================================================================== --- trunk/hw/alpha_palcode.c 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/hw/alpha_palcode.c 2008-06-03 19:51:57 UTC (rev 4655) @@ -55,7 +55,7 @@ }; #if 0 -/* One must explicitely check that the TB is valid and the FOE bit is reset */ +/* One must explicitly check that the TB is valid and the FOE bit is reset */ static void update_itb (void) { /* This writes into a temp register, not the actual one */ Modified: trunk/hw/integratorcp.c =================================================================== --- trunk/hw/integratorcp.c 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/hw/integratorcp.c 2008-06-03 19:51:57 UTC (rev 4655) @@ -494,7 +494,7 @@ } ram_offset = qemu_ram_alloc(ram_size); /* ??? On a real system the first 1Mb is mapped as SSRAM or boot flash. */ - /* ??? RAM shoud repeat to fill physical memory space. */ + /* ??? RAM should repeat to fill physical memory space. */ /* SDRAM at address zero*/ cpu_register_physical_memory(0, ram_size, ram_offset | IO_MEM_RAM); /* And again at address 0x80000000 */ Modified: trunk/hw/realview.c =================================================================== --- trunk/hw/realview.c 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/hw/realview.c 2008-06-03 19:51:57 UTC (rev 4655) @@ -64,7 +64,7 @@ } } - /* ??? RAM shoud repeat to fill physical memory space. */ + /* ??? RAM should repeat to fill physical memory space. */ /* SDRAM at address zero. */ cpu_register_physical_memory(0, ram_size, IO_MEM_RAM); Modified: trunk/hw/scsi-disk.c =================================================================== --- trunk/hw/scsi-disk.c 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/hw/scsi-disk.c 2008-06-03 19:51:57 UTC (rev 4655) @@ -662,7 +662,7 @@ case 0x46: DPRINTF("Get Configuration (rt %d, maxlen %d)\n", buf[1] & 3, len); memset(outbuf, 0, 8); - /* ??? This shoud probably return much more information. For now + /* ??? This should probably return much more information. For now just return the basic header indicating the CD-ROM profile. */ outbuf[7] = 8; // CD-ROM r->buf_len = 8; Modified: trunk/hw/versatilepb.c =================================================================== --- trunk/hw/versatilepb.c 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/hw/versatilepb.c 2008-06-03 19:51:57 UTC (rev 4655) @@ -182,7 +182,7 @@ fprintf(stderr, "Unable to find CPU definition\n"); exit(1); } - /* ??? RAM shoud repeat to fill physical memory space. */ + /* ??? RAM should repeat to fill physical memory space. */ /* SDRAM at address zero. */ cpu_register_physical_memory(0, ram_size, IO_MEM_RAM); Modified: trunk/linux-user/path.c =================================================================== --- trunk/linux-user/path.c 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/linux-user/path.c 2008-06-03 19:51:57 UTC (rev 4655) @@ -82,7 +82,7 @@ return root; } -/* This needs to be done after tree is stabalized (ie. no more reallocs!). */ +/* This needs to be done after tree is stabilized (ie. no more reallocs!). */ static void set_parents(struct pathelem *child, struct pathelem *parent) { unsigned int i; Modified: trunk/linux-user/qemu.h =================================================================== --- trunk/linux-user/qemu.h 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/linux-user/qemu.h 2008-06-03 19:51:57 UTC (rev 4655) @@ -388,7 +388,7 @@ } /* Unlock an area of guest memory. The first LEN bytes must be - flushed back to guest memory. host_ptr = NULL is explicitely + flushed back to guest memory. host_ptr = NULL is explicitly allowed and does nothing. */ static inline void unlock_user(void *host_ptr, abi_ulong guest_addr, long len) Modified: trunk/qemu-tech.texi =================================================================== --- trunk/qemu-tech.texi 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/qemu-tech.texi 2008-06-03 19:51:57 UTC (rev 4655) @@ -277,7 +277,7 @@ qemu-fast system emulator. It requires a patched Linux kernel to work (you cannot launch the same kernel on your PC), but the patches are really small. As it is a PC virtualizer (no emulation is done except -for some priveledged instructions), it has the potential of being +for some privileged instructions), it has the potential of being faster than QEMU. The downside is that a complicated (and potentially unsafe) host kernel patch is needed. @@ -334,7 +334,7 @@ result (called @code{CC_DST}) and the type of operation (called @code{CC_OP}). -@code{CC_OP} is almost never explicitely set in the generated code +@code{CC_OP} is almost never explicitly set in the generated code because it is known at translation time. In order to increase performances, a backward pass is performed on the Modified: trunk/target-i386/cpu.h =================================================================== --- trunk/target-i386/cpu.h 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/target-i386/cpu.h 2008-06-03 19:51:57 UTC (rev 4655) @@ -351,7 +351,7 @@ enum { CC_OP_DYNAMIC, /* must use dynamic code to get cc_op */ - CC_OP_EFLAGS, /* all cc are explicitely computed, CC_SRC = flags */ + CC_OP_EFLAGS, /* all cc are explicitly computed, CC_SRC = flags */ CC_OP_MULB, /* modify all flags, C, O = (CC_SRC != 0) */ CC_OP_MULW, Modified: trunk/target-i386/op_helper.c =================================================================== --- trunk/target-i386/op_helper.c 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/target-i386/op_helper.c 2008-06-03 19:51:57 UTC (rev 4655) @@ -689,7 +689,7 @@ } dpl = (e2 >> DESC_DPL_SHIFT) & 3; cpl = env->hflags & HF_CPL_MASK; - /* check privledge if software int */ + /* check privilege if software int */ if (is_int && dpl < cpl) raise_exception_err(EXCP0D_GPF, intno * 8 + 2); /* check valid bit */ @@ -900,7 +900,7 @@ } dpl = (e2 >> DESC_DPL_SHIFT) & 3; cpl = env->hflags & HF_CPL_MASK; - /* check privledge if software int */ + /* check privilege if software int */ if (is_int && dpl < cpl) raise_exception_err(EXCP0D_GPF, intno * 16 + 2); /* check valid bit */ @@ -1166,7 +1166,7 @@ dpl = (e2 >> DESC_DPL_SHIFT) & 3; cpl = env->hflags & HF_CPL_MASK; - /* check privledge if software int */ + /* check privilege if software int */ if (is_int && dpl < cpl) raise_exception_err(EXCP0D_GPF, (intno << shift) + 2); @@ -2698,7 +2698,7 @@ sp += addend; if (rpl == cpl && (!(env->hflags & HF_CS64_MASK) || ((env->hflags & HF_CS64_MASK) && !is_iret))) { - /* return to same priledge level */ + /* return to same privilege level */ cpu_x86_load_seg_cache(env, R_CS, new_cs, get_seg_base(e1, e2), get_seg_limit(e1, e2), Modified: trunk/target-ppc/translate.c =================================================================== --- trunk/target-ppc/translate.c 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/target-ppc/translate.c 2008-06-03 19:51:57 UTC (rev 4655) @@ -287,7 +287,7 @@ typedef struct opcode_t { unsigned char opc1, opc2, opc3; -#if HOST_LONG_BITS == 64 /* Explicitely align to 64 bits */ +#if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */ unsigned char pad[5]; #else unsigned char pad[1]; Modified: trunk/tcg/tcg.c =================================================================== --- trunk/tcg/tcg.c 2008-06-02 16:16:42 UTC (rev 4654) +++ trunk/tcg/tcg.c 2008-06-03 19:51:57 UTC (rev 4655) @@ -1406,7 +1406,7 @@ propagation */ tcg_out_movi(s, ots->type, ots->reg, val); } else { - /* The movi is not explicitely generated here */ + /* The movi is not explicitly generated here */ if (ots->val_type == TEMP_VAL_REG) s->reg_to_temp[ots->reg] = -1; ots->val_type = TEMP_VAL_CONST;