]> git.proxmox.com Git - qemu.git/commitdiff
misc: New spelling fixes in comments
authorStefan Weil <sw@weilnetz.de>
Thu, 10 Oct 2013 18:53:40 +0000 (20:53 +0200)
committerMichael Tokarev <mjt@tls.msk.ru>
Sat, 26 Oct 2013 09:01:57 +0000 (13:01 +0400)
compatiblity -> compatibility
continously -> continuously
existance -> existence
usefull -> useful
shoudl -> should

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
block/iscsi.c
hw/ppc/spapr.c
target-alpha/translate.c
tests/test-throttle.c

index a2a961e163a460a1c30f17278a4c0ec622b20e97..a2d578c0a7b2b3d56524ed326cdd2fffbfe2713b 100644 (file)
@@ -866,7 +866,7 @@ retry:
         /* in case the get_lba_status_callout fails (i.e.
          * because the device is busy or the cmd is not
          * supported) we pretend all blocks are allocated
-         * for backwards compatiblity */
+         * for backwards compatibility */
         goto out;
     }
 
index 004184d84174a0878407cfc55d73001d944e17d0..74aa5cce513b28fe32a1bdb1189cf201accc22fb 100644 (file)
@@ -120,7 +120,7 @@ int spapr_allocate_irq_block(int num, bool lsi, bool msi)
      * it has to be aligned to num to support multiple
      * MSI vectors. MSI-X is not affected by this.
      * The hint is used for the first IRQ, the rest should
-     * be allocated continously.
+     * be allocated continuously.
      */
     if (msi) {
         assert((num == 1) || (num == 2) || (num == 4) ||
index c24910f6a1fab8c1679ea039101959607804f60b..1155e86e290a72816df04d39d1a8a7acb882c518 100644 (file)
@@ -1601,7 +1601,7 @@ static ExitStatus gen_call_pal(DisasContext *ctx, int palcode)
         tcg_temp_free(pc);
 
         /* Since the destination is running in PALmode, we don't really
-           need the page permissions check.  We'll see the existance of
+           need the page permissions check.  We'll see the existence of
            the page when we create the TB, and we'll flush all TBs if
            we change the PAL base register.  */
         if (!ctx->singlestep_enabled && !(ctx->tb->cflags & CF_LAST_IO)) {
index 760812645b8adf2405abd103d978939e23a1e64e..1d4ffd3603542d8be137b127e13a7acf96bf5dc9 100644 (file)
@@ -18,7 +18,7 @@ LeakyBucket    bkt;
 ThrottleConfig cfg;
 ThrottleState  ts;
 
-/* usefull function */
+/* useful function */
 static bool double_cmp(double x, double y)
 {
     return fabsl(x - y) < 1e-6;
@@ -320,7 +320,7 @@ static void test_have_timer(void)
     /* zero the structure */
     memset(&ts, 0, sizeof(ts));
 
-    /* no timer set shoudl return false */
+    /* no timer set should return false */
     g_assert(!throttle_have_timer(&ts));
 
     /* init the structure */