[Qemu-devel] [PATCH] block: Typo fix in copy_on_readv()

Eric Blake posted 1 patch 6 years, 6 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20170928191325.30253-1-eblake@redhat.com
Test checkpatch passed
Test docker passed
Test s390x passed
block/io.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[Qemu-devel] [PATCH] block: Typo fix in copy_on_readv()
Posted by Eric Blake 6 years, 6 months ago
Signed-off-by: Eric Blake <eblake@redhat.com>
---
 block/io.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/io.c b/block/io.c
index c02c4c9c20..38c55d1c8a 100644
--- a/block/io.c
+++ b/block/io.c
@@ -953,7 +953,7 @@ static int coroutine_fn bdrv_co_do_copy_on_readv(BdrvChild *child,
     /* FIXME We cannot require callers to have write permissions when all they
      * are doing is a read request. If we did things right, write permissions
      * would be obtained anyway, but internally by the copy-on-read code. As
-     * long as it is implemented here rather than in a separat filter driver,
+     * long as it is implemented here rather than in a separate filter driver,
      * the copy-on-read code doesn't have its own BdrvChild, however, for which
      * it could request permissions. Therefore we have to bypass the permission
      * system for the moment. */
-- 
2.13.5


Re: [Qemu-devel] [PATCH] block: Typo fix in copy_on_readv()
Posted by Kevin Wolf 6 years, 6 months ago
Am 28.09.2017 um 21:13 hat Eric Blake geschrieben:
> Signed-off-by: Eric Blake <eblake@redhat.com>

Thanks, applied to the block branch.

Kevin