summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@redhat.com>2019-08-27 11:13:28 +0100
committerMax Reitz <mreitz@redhat.com>2019-09-03 14:55:35 +0200
commit236094c73815370f1a57abe4096b8b2dfd9bfd1b (patch)
tree6fca7bd02cd2a9084270d15e25f30d42fe01660f
parent39af39c428522e7c6a4015cb103d387b42a198b6 (diff)
downloadfocaccia-qemu-236094c73815370f1a57abe4096b8b2dfd9bfd1b.tar.gz
focaccia-qemu-236094c73815370f1a57abe4096b8b2dfd9bfd1b.zip
file-posix: fix request_alignment typo
Fixes: a6b257a08e3d72219f03e461a52152672fec0612
       ("file-posix: Handle undetectable alignment")
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 20190827101328.4062-1-stefanha@redhat.com
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
-rw-r--r--block/file-posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/file-posix.c b/block/file-posix.c
index 447f937aa1..71f168ee2f 100644
--- a/block/file-posix.c
+++ b/block/file-posix.c
@@ -380,7 +380,7 @@ static void raw_probe_alignment(BlockDriverState *bs, int fd, Error **errp)
         for (i = 0; i < ARRAY_SIZE(alignments); i++) {
             align = alignments[i];
             if (raw_is_io_aligned(fd, buf + align, max_align)) {
-                /* Fallback to request_aligment. */
+                /* Fallback to request_alignment. */
                 s->buf_align = (align != 1) ? align : bs->bl.request_alignment;
                 break;
             }