diff mbox

linux-user: Fix unlock_user() call in return from poll()

Message ID 1298629660-23901-1-git-send-email-peter.maydell@linaro.org
State Accepted
Commit 30cb4cdec79dc2727f562edee36a4f3df4dfc23f
Headers show

Commit Message

Peter Maydell Feb. 25, 2011, 10:27 a.m. UTC
Correct the broken attempt to calculate the third argument
to unlock_user() in the code path which unlocked the pollfd
array on return from poll() and ppoll() emulation. (This
only caused a problem if unlock_user() wasn't a no-op, eg
if DEBUG_REMAP is defined.)

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
 linux-user/syscall.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

Comments

Aurelien Jarno March 22, 2011, 6:50 a.m. UTC | #1
On Fri, Feb 25, 2011 at 10:27:40AM +0000, Peter Maydell wrote:
> Correct the broken attempt to calculate the third argument
> to unlock_user() in the code path which unlocked the pollfd
> array on return from poll() and ppoll() emulation. (This
> only caused a problem if unlock_user() wasn't a no-op, eg
> if DEBUG_REMAP is defined.)
> 
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
>  linux-user/syscall.c |    4 +---
>  1 files changed, 1 insertions(+), 3 deletions(-)

Thanks, applied.

> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index cf8a4c3..822b863 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -6314,10 +6314,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
>                  for(i = 0; i < nfds; i++) {
>                      target_pfd[i].revents = tswap16(pfd[i].revents);
>                  }
> -                ret += nfds * (sizeof(struct target_pollfd)
> -                               - sizeof(struct pollfd));
>              }
> -            unlock_user(target_pfd, arg1, ret);
> +            unlock_user(target_pfd, arg1, sizeof(struct target_pollfd) * nfds);
>          }
>          break;
>  #endif
> -- 
> 1.7.1
> 
> 
>
diff mbox

Patch

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index cf8a4c3..822b863 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -6314,10 +6314,8 @@  abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
                 for(i = 0; i < nfds; i++) {
                     target_pfd[i].revents = tswap16(pfd[i].revents);
                 }
-                ret += nfds * (sizeof(struct target_pollfd)
-                               - sizeof(struct pollfd));
             }
-            unlock_user(target_pfd, arg1, ret);
+            unlock_user(target_pfd, arg1, sizeof(struct target_pollfd) * nfds);
         }
         break;
 #endif