[Qemu-devel] [PATCH] util: aio-posix: fix a typo

Li Qiang posted 1 patch 7 years ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/1538964972-3223-1-git-send-email-liq3ea@gmail.com
Test docker-clang@ubuntu failed
Test checkpatch passed
util/aio-posix.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[Qemu-devel] [PATCH] util: aio-posix: fix a typo
Posted by Li Qiang 7 years ago
Cc: qemu-trivial@nongnu.org
Signed-off-by: Li Qiang <liq3ea@gmail.com>
---
 util/aio-posix.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/aio-posix.c b/util/aio-posix.c
index 621b302..51c41ed 100644
--- a/util/aio-posix.c
+++ b/util/aio-posix.c
@@ -40,7 +40,7 @@ struct AioHandler
 
 #ifdef CONFIG_EPOLL_CREATE1
 
-/* The fd number threashold to switch to epoll */
+/* The fd number threshold to switch to epoll */
 #define EPOLL_ENABLE_THRESHOLD 64
 
 static void aio_epoll_disable(AioContext *ctx)
-- 
1.8.3.1


Re: [Qemu-devel] [PATCH] util: aio-posix: fix a typo
Posted by Peter Maydell 7 years ago
On 8 October 2018 at 03:16, Li Qiang <liq3ea@gmail.com> wrote:
> Cc: qemu-trivial@nongnu.org
> Signed-off-by: Li Qiang <liq3ea@gmail.com>
> ---
>  util/aio-posix.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/util/aio-posix.c b/util/aio-posix.c
> index 621b302..51c41ed 100644
> --- a/util/aio-posix.c
> +++ b/util/aio-posix.c
> @@ -40,7 +40,7 @@ struct AioHandler
>
>  #ifdef CONFIG_EPOLL_CREATE1
>
> -/* The fd number threashold to switch to epoll */
> +/* The fd number threshold to switch to epoll */
>  #define EPOLL_ENABLE_THRESHOLD 64
>
>  static void aio_epoll_disable(AioContext *ctx)
> --
> 1.8.3.1
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

thanks
-- PMM

Re: [Qemu-devel] [PATCH] util: aio-posix: fix a typo
Posted by Fam Zheng 7 years ago
On Sun, 10/07 19:16, Li Qiang wrote:
> Cc: qemu-trivial@nongnu.org
> Signed-off-by: Li Qiang <liq3ea@gmail.com>

Reviewed-by: Fam Zheng <famz@redhat.com>

Re: [Qemu-devel] [PATCH] util: aio-posix: fix a typo
Posted by Stefan Hajnoczi 7 years ago
On Sun, Oct 07, 2018 at 07:16:12PM -0700, Li Qiang wrote:
> Cc: qemu-trivial@nongnu.org
> Signed-off-by: Li Qiang <liq3ea@gmail.com>
> ---
>  util/aio-posix.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Thanks, applied to my block tree:
https://github.com/stefanha/qemu/commits/block

Stefan