qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
	Anthony Liguori <aliguori@us.ibm.com>,
	Dong Xu Wang <wdongxu@linux.vnet.ibm.com>,
	Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PATCH 14/15] fix spelling in block sub directory
Date: Fri,  2 Dec 2011 13:50:32 +0000	[thread overview]
Message-ID: <1322833833-9969-15-git-send-email-stefanha@linux.vnet.ibm.com> (raw)
In-Reply-To: <1322833833-9969-1-git-send-email-stefanha@linux.vnet.ibm.com>

From: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>

Cc: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
 block/cow.c       |    2 +-
 block/qcow2.c     |    4 ++--
 block/raw-posix.c |    4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/block/cow.c b/block/cow.c
index 089d395..3448296 100644
--- a/block/cow.c
+++ b/block/cow.c
@@ -92,7 +92,7 @@ static int cow_open(BlockDriverState *bs, int flags)
 }
 
 /*
- * XXX(hch): right now these functions are extremly ineffcient.
+ * XXX(hch): right now these functions are extremely ineffcient.
  * We should just read the whole bitmap we'll need in one go instead.
  */
 static inline int cow_set_bit(BlockDriverState *bs, int64_t bitnum)
diff --git a/block/qcow2.c b/block/qcow2.c
index d7805ce..9e1b1eb 100644
--- a/block/qcow2.c
+++ b/block/qcow2.c
@@ -92,7 +92,7 @@ static int qcow2_read_extensions(BlockDriverState *bs, uint64_t start_offset,
         if (offset > s->cluster_size)
             printf("qcow2_read_extension: suspicious offset %lu\n", offset);
 
-        printf("attemting to read extended header in offset %lu\n", offset);
+        printf("attempting to read extended header in offset %lu\n", offset);
 #endif
 
         if (bdrv_pread(bs->file, offset, &ext, sizeof(ext)) != sizeof(ext)) {
@@ -821,7 +821,7 @@ static int qcow2_create2(const char *filename, int64_t total_size,
                          int flags, size_t cluster_size, int prealloc,
                          QEMUOptionParameter *options)
 {
-    /* Calulate cluster_bits */
+    /* Calculate cluster_bits */
     int cluster_bits;
     cluster_bits = ffs(cluster_size) - 1;
     if (cluster_bits < MIN_CLUSTER_BITS || cluster_bits > MAX_CLUSTER_BITS ||
diff --git a/block/raw-posix.c b/block/raw-posix.c
index a3de373..2ee5d69 100644
--- a/block/raw-posix.c
+++ b/block/raw-posix.c
@@ -1153,7 +1153,7 @@ static int cdrom_open(BlockDriverState *bs, const char *filename, int flags)
     if (ret)
         return ret;
 
-    /* make sure the door isnt locked at this time */
+    /* make sure the door isn't locked at this time */
     ioctl(s->fd, CDIOCALLOW);
     return 0;
 }
@@ -1184,7 +1184,7 @@ static int cdrom_reopen(BlockDriverState *bs)
     }
     s->fd = fd;
 
-    /* make sure the door isnt locked at this time */
+    /* make sure the door isn't locked at this time */
     ioctl(s->fd, CDIOCALLOW);
     return 0;
 }
-- 
1.7.7.3

  parent reply	other threads:[~2011-12-02 13:53 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-02 13:50 [Qemu-devel] [PULL 00/15] Trivial patches for 24 November to 2 December 2011 Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 01/15] sonic: fix typo Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 02/15] qxl: Don't convert from size_t to int and back in qxl_cursor() Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 03/15] MAINTAINERS: Delete spurious '.' Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 04/15] darwin-user: Fix format string in debug message Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 05/15] fix spelling in darwin-user sub directory Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 06/15] fix spelling in linux-user " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 07/15] fix spelling in libcacard " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 08/15] fix spelling in QMP " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 09/15] fix spelling in scripts " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 10/15] fix spelling in target " Stefan Hajnoczi
2011-12-02 13:59   ` Alexander Graf
2011-12-02 13:50 ` [Qemu-devel] [PATCH 11/15] fix spelling in tcg " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 12/15] fix spelling in tests " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 13/15] fix spelling in ui " Stefan Hajnoczi
2011-12-02 13:50 ` Stefan Hajnoczi [this message]
2011-12-02 13:50 ` [Qemu-devel] [PATCH 15/15] fix spelling in main directory Stefan Hajnoczi
2011-12-05 15:31 ` [Qemu-devel] [PULL 00/15] Trivial patches for 24 November to 2 December 2011 Anthony Liguori

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1322833833-9969-15-git-send-email-stefanha@linux.vnet.ibm.com \
    --to=stefanha@linux.vnet.ibm.com \
    --cc=aliguori@us.ibm.com \
    --cc=kwolf@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=wdongxu@linux.vnet.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).