qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] linux-user: Fix typo in comment
@ 2013-05-20  9:20 Lei Li
  2013-05-20 11:10 ` Stefan Weil
  2013-05-27 19:39 ` [Qemu-devel] [Qemu-trivial] " Michael Tokarev
  0 siblings, 2 replies; 4+ messages in thread
From: Lei Li @ 2013-05-20  9:20 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Lei Li

Signed-off-by: Lei Li <lilei@linux.vnet.ibm.com>
---
 linux-user/syscall.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 30e93bc..72c6866 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -8236,7 +8236,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
 #ifdef TARGET_NR_madvise
     case TARGET_NR_madvise:
         /* A straight passthrough may not be safe because qemu sometimes
-           turns private flie-backed mappings into anonymous mappings.
+           turns private file-backed mappings into anonymous mappings.
            This will break MADV_DONTNEED.
            This is a hint, so ignoring and returning success is ok.  */
         ret = get_errno(0);
-- 
1.7.7.6

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] linux-user: Fix typo in comment
  2013-05-20  9:20 [Qemu-devel] [PATCH] linux-user: Fix typo in comment Lei Li
@ 2013-05-20 11:10 ` Stefan Weil
  2013-05-27 10:35   ` Lei Li
  2013-05-27 19:39 ` [Qemu-devel] [Qemu-trivial] " Michael Tokarev
  1 sibling, 1 reply; 4+ messages in thread
From: Stefan Weil @ 2013-05-20 11:10 UTC (permalink / raw)
  To: Lei Li; +Cc: qemu-trivial, qemu-devel

Am 20.05.2013 11:20, schrieb Lei Li:
> Signed-off-by: Lei Li <lilei@linux.vnet.ibm.com>
> ---
>  linux-user/syscall.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 30e93bc..72c6866 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -8236,7 +8236,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
>  #ifdef TARGET_NR_madvise
>      case TARGET_NR_madvise:
>          /* A straight passthrough may not be safe because qemu sometimes
> -           turns private flie-backed mappings into anonymous mappings.
> +           turns private file-backed mappings into anonymous mappings.
>             This will break MADV_DONTNEED.
>             This is a hint, so ignoring and returning success is ok.  */
>          ret = get_errno(0);

Reviewed-by: Stefan Weil <sw@weilnetz.de>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] linux-user: Fix typo in comment
  2013-05-20 11:10 ` Stefan Weil
@ 2013-05-27 10:35   ` Lei Li
  0 siblings, 0 replies; 4+ messages in thread
From: Lei Li @ 2013-05-27 10:35 UTC (permalink / raw)
  To: mjt@tls.msk.ru >> Michael Tokarev
  Cc: qemu-trivial, Stefan Weil, qemu-devel

On 05/20/2013 07:10 PM, Stefan Weil wrote:
> Am 20.05.2013 11:20, schrieb Lei Li:
>> Signed-off-by: Lei Li <lilei@linux.vnet.ibm.com>
>> ---
>>   linux-user/syscall.c |    2 +-
>>   1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
>> index 30e93bc..72c6866 100644
>> --- a/linux-user/syscall.c
>> +++ b/linux-user/syscall.c
>> @@ -8236,7 +8236,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
>>   #ifdef TARGET_NR_madvise
>>       case TARGET_NR_madvise:
>>           /* A straight passthrough may not be safe because qemu sometimes
>> -           turns private flie-backed mappings into anonymous mappings.
>> +           turns private file-backed mappings into anonymous mappings.
>>              This will break MADV_DONTNEED.
>>              This is a hint, so ignoring and returning success is ok.  */
>>           ret = get_errno(0);
> Reviewed-by: Stefan Weil <sw@weilnetz.de>
>
PING?


-- 
Lei

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [Qemu-trivial] [PATCH] linux-user: Fix typo in comment
  2013-05-20  9:20 [Qemu-devel] [PATCH] linux-user: Fix typo in comment Lei Li
  2013-05-20 11:10 ` Stefan Weil
@ 2013-05-27 19:39 ` Michael Tokarev
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Tokarev @ 2013-05-27 19:39 UTC (permalink / raw)
  To: Lei Li; +Cc: qemu-trivial, qemu-devel

20.05.2013 13:20, Lei Li wrote:
> Signed-off-by: Lei Li <lilei@linux.vnet.ibm.com>
> ---
>  linux-user/syscall.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Thanks, applied to the trivial patch queue.

/mjt

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-05-27 19:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-20  9:20 [Qemu-devel] [PATCH] linux-user: Fix typo in comment Lei Li
2013-05-20 11:10 ` Stefan Weil
2013-05-27 10:35   ` Lei Li
2013-05-27 19:39 ` [Qemu-devel] [Qemu-trivial] " Michael Tokarev

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).