From patchwork Wed May 9 15:12:04 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jim Meyering X-Patchwork-Id: 8505 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id C8EFC23E37 for ; Wed, 9 May 2012 15:12:15 +0000 (UTC) Received: from mail-we0-f180.google.com (mail-we0-f180.google.com [74.125.82.180]) by fiordland.canonical.com (Postfix) with ESMTP id B7A61A1878D for ; Wed, 9 May 2012 15:12:15 +0000 (UTC) Received: by werp13 with SMTP id p13so351924wer.11 for ; Wed, 09 May 2012 08:12:15 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:in-reply-to:references:date:message-id:lines:mime-version :content-type:x-gm-message-state; bh=xsWaVlu5bEcw+Nc7yGDpktmOXIRjDMQ7v7out0A9PmY=; b=WpIm5W8Gm4EY4eHYbSdFAFiq941S9KOZOtNXei8W6HKKGFx0/xie9WrgUw+Wy/2UcU PSAy0iAt5l3G3M3XonbjC+sVScR24NGWeuiHDzXA9J+y5wBdrvacwmsPE6koNcAAsPf5 NzYAI4jy9CwHhlBYGEb4m16hh+to+EonifiG5iLyCh7QMn831b6UlKAVlQ6EC7Ixc2kF EWr5jOVlDLy63iEh4/zA8oQv1HuIpMIlqMf+6DObpkwGDsgNISmVNYSbxQZJU6+Z7dUE iu6olTdL5sYK7s2WMNtqNmVB5uYbpkDBASGqep7R4WFnpS4tIaaqPNIcmgoKa2RrJRdi Aj8w== Received: by 10.50.220.136 with SMTP id pw8mr333285igc.1.1336576329800; Wed, 09 May 2012 08:12:09 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.73.147 with SMTP id q19csp23725ibj; Wed, 9 May 2012 08:12:07 -0700 (PDT) Received: by 10.180.83.38 with SMTP id n6mr38912420wiy.1.1336576327464; Wed, 09 May 2012 08:12:07 -0700 (PDT) Received: from mx.meyering.net (mx.meyering.net. [88.168.87.75]) by mx.google.com with ESMTP id m49si3472401wee.96.2012.05.09.08.12.05; Wed, 09 May 2012 08:12:07 -0700 (PDT) Received-SPF: pass (google.com: domain of jim@meyering.net designates 88.168.87.75 as permitted sender) client-ip=88.168.87.75; Authentication-Results: mx.google.com; spf=pass (google.com: domain of jim@meyering.net designates 88.168.87.75 as permitted sender) smtp.mail=jim@meyering.net Received: from rho.meyering.net (localhost.localdomain [127.0.0.1]) by rho.meyering.net (Acme Bit-Twister) with ESMTP id D0611600B3; Wed, 9 May 2012 17:12:04 +0200 (CEST) From: Jim Meyering To: Peter Maydell Cc: qemu-devel@nongnu.org, qemu-trivial@nongnu.org, patches@linaro.org Subject: [PATCHv2] fix some common typos In-Reply-To: (Peter Maydell's message of "Wed, 9 May 2012 15:48:27 +0100") References: <87y5p1wh42.fsf@rho.meyering.net> Date: Wed, 09 May 2012 17:12:04 +0200 Message-ID: <87k40lwfqz.fsf_-_@rho.meyering.net> Lines: 160 MIME-Version: 1.0 X-Gm-Message-State: ALoCoQkV2qU9IOI/4WfePwWxvcgOn7xGlIFU2jg6TexDPeViv/EzAw3/FP+wfVW47YlOBWuL/3UM These were identified using: http://github.com/lyda/misspell-check and run like this to create a bourne shell script using GNU sed's -i option: git ls-files|grep -vF .bin | misspellings -f - |grep -v '^ERROR:' |perl \ -pe 's/^(.*?)\[(\d+)\]: (\w+) -> "(.*?)"$/sed -i '\''${2}s!$3!$4!'\'' $1/' Manually eliding the FP, "rela->real" and resolving "addres" to address (not "adders") we get this: sed -i '450s!thru!through!' Changelog sed -i '260s!neccessary!necessary!' coroutine-sigaltstack.c sed -i '54s!miniscule!minuscule!' disas.c sed -i '1094s!thru!through!' hw/usb/hcd-ehci.c sed -i '1095s!thru!through!' hw/usb/hcd-ehci.c sed -i '21s!unecessary!unnecessary!' qapi-schema-guest.json sed -i '307s!explictly!explicitly!' qemu-ga.c sed -i '490s!preceeding!preceding!' qga/commands-posix.c sed -i '792s!addres!address!' qga/commands-posix.c sed -i '6s!beeing!being!' tests/tcg/test-mmap.c Also, manually fix "arithmentic", spotted by Peter Maydell: sed -i 's!arithmentic!arithmetic!' coroutine-sigaltstack.c Signed-off-by: Jim Meyering Reviewed-by: Peter Maydell --- ... > Also "arithmetic". Thanks. Amended. Changelog | 2 +- coroutine-sigaltstack.c | 2 +- disas.c | 2 +- hw/usb/hcd-ehci.c | 4 ++-- qapi-schema-guest.json | 2 +- qemu-ga.c | 2 +- qga/commands-posix.c | 4 ++-- tests/tcg/test-mmap.c | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) -- 1.7.10.1.487.ga3935e6 diff --git a/Changelog b/Changelog index 8b63258..13eebef 100644 --- a/Changelog +++ b/Changelog @@ -447,7 +447,7 @@ version 0.5.0: - multi-target build - fixed: no error code in hardware interrupts - fixed: pop ss, mov ss, x and sti disable hardware irqs for the next insn - - correct single stepping thru string operations + - correct single stepping through string operations - preliminary SPARC target support (Thomas M. Ogrisegg) - tun-fd option (Rusty Russell) - automatic IDE geometry detection diff --git a/coroutine-sigaltstack.c b/coroutine-sigaltstack.c index 7ff2d33..7fa2e85 100644 --- a/coroutine-sigaltstack.c +++ b/coroutine-sigaltstack.c @@ -257,7 +257,7 @@ static Coroutine *coroutine_new(void) /* * Now enter the trampoline again, but this time not as a signal * handler. Instead we jump into it directly. The functionally - * redundant ping-pong pointer arithmentic is neccessary to avoid + * redundant ping-pong pointer arithmetic is necessary to avoid * type-conversion warnings related to the `volatile' qualifier and * the fact that `jmp_buf' usually is an array type. */ diff --git a/disas.c b/disas.c index 27071c3..93d8d30 100644 --- a/disas.c +++ b/disas.c @@ -51,7 +51,7 @@ perror_memory (int status, bfd_vma memaddr, struct disassemble_info *info) "Address 0x%" PRIx64 " is out of bounds.\n", memaddr); } -/* This could be in a separate file, to save miniscule amounts of space +/* This could be in a separate file, to save minuscule amounts of space in statically linked executables. */ /* Just print the address is hex. This is included for completeness even diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c index 4ff4d40..e759c99 100644 --- a/hw/usb/hcd-ehci.c +++ b/hw/usb/hcd-ehci.c @@ -1091,8 +1091,8 @@ static void ehci_mem_writel(void *ptr, target_phys_addr_t addr, uint32_t val) break; case USBSTS: - val &= USBSTS_RO_MASK; // bits 6 thru 31 are RO - ehci_clear_usbsts(s, val); // bits 0 thru 5 are R/WC + val &= USBSTS_RO_MASK; // bits 6 through 31 are RO + ehci_clear_usbsts(s, val); // bits 0 through 5 are R/WC val = s->usbsts; ehci_set_interrupt(s, 0); break; diff --git a/qapi-schema-guest.json b/qapi-schema-guest.json index d7a073e..692b570 100644 --- a/qapi-schema-guest.json +++ b/qapi-schema-guest.json @@ -18,7 +18,7 @@ # lexer/tokenizer/parser state should be flushed/reset in # preparation for reliably receiving the subsequent response. As # an optimization, clients may opt to ignore all data until a -# sentinel value is receiving to avoid unecessary processing of +# sentinel value is receiving to avoid unnecessary processing of # stale data. # # Similarly, clients should also precede this *request* diff --git a/qemu-ga.c b/qemu-ga.c index 216be39..680997e 100644 --- a/qemu-ga.c +++ b/qemu-ga.c @@ -304,7 +304,7 @@ static void ga_disable_non_whitelisted(void) g_free(list_head); } -/* [re-]enable all commands, except those explictly blacklisted by user */ +/* [re-]enable all commands, except those explicitly blacklisted by user */ static void ga_enable_non_blacklisted(GList *blacklist) { char **list_head, **list; diff --git a/qga/commands-posix.c b/qga/commands-posix.c index d58730a..e448431 100644 --- a/qga/commands-posix.c +++ b/qga/commands-posix.c @@ -487,7 +487,7 @@ int64_t qmp_guest_fsfreeze_thaw(Error **err) * was returned the filesystem was *not* unfrozen by that particular * call. * - * since multiple preceeding FIFREEZEs require multiple calls to FITHAW + * since multiple preceding FIFREEZEs require multiple calls to FITHAW * to unfreeze, continuing issuing FITHAW until an error is returned, * in which case either the filesystem is in an unfreezable state, or, * more likely, it was thawed previously (and remains so afterward). @@ -789,7 +789,7 @@ GuestNetworkInterfaceList *qmp_guest_network_get_interfaces(Error **errp) strncpy(ifr.ifr_name, info->value->name, IF_NAMESIZE); if (ioctl(sock, SIOCGIFHWADDR, &ifr) == -1) { snprintf(err_msg, sizeof(err_msg), - "failed to get MAC addres of %s: %s", + "failed to get MAC address of %s: %s", ifa->ifa_name, strerror(errno)); error_set(errp, QERR_QGA_COMMAND_FAILED, err_msg); diff --git a/tests/tcg/test-mmap.c b/tests/tcg/test-mmap.c index c67174a..c418b67 100644 --- a/tests/tcg/test-mmap.c +++ b/tests/tcg/test-mmap.c @@ -3,7 +3,7 @@ * * When running qemu-linux-user with the -p flag, you may need to tell * this test program about the pagesize because getpagesize() will not reflect - * the -p choice. Simply pass one argument beeing the pagesize. + * the -p choice. Simply pass one argument being the pagesize. * * Copyright (c) 2007 AXIS Communications AB * Written by Edgar E. Iglesias.