qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] ppc kvm: fix to compile


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH] ppc kvm: fix to compile
Date: Tue, 16 Jul 2013 07:32:32 -0500
User-agent: Notmuch/0.15.2+202~g0c4b8aa (http://notmuchmail.org) Emacs/23.3.1 (x86_64-pc-linux-gnu)

Alexey Kardashevskiy <address@hidden> writes:

> Signed-off-by: Alexey Kardashevskiy <address@hidden>
> ---
>  target-ppc/kvm.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/target-ppc/kvm.c b/target-ppc/kvm.c
> index 61f2737..606bdb9 100644
> --- a/target-ppc/kvm.c
> +++ b/target-ppc/kvm.c
> @@ -1628,7 +1628,7 @@ void *kvmppc_create_spapr_tce(uint32_t liobn, uint32_t 
> window_size, int *pfd)
>          return NULL;
>      }
>  
> -    len = (window_size / SPAPR_TCE_PAGE_SIZE) * sizeof(sPAPRTCE);
> +    len = (window_size / SPAPR_TCE_PAGE_SIZE) * sizeof(uint64_t);
>      /* FIXME: round this up to page size */
>  
>      table = mmap(NULL, len, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
> @@ -1651,7 +1651,7 @@ int kvmppc_remove_spapr_tce(void *table, int fd, 
> uint32_t window_size)
>          return -1;
>      }
>  
> -    len = (window_size / SPAPR_TCE_PAGE_SIZE)*sizeof(sPAPRTCE);
> +    len = (window_size / SPAPR_TCE_PAGE_SIZE)*sizeof(uint64_t);
>      if ((munmap(table, len) < 0) ||
>          (close(fd) < 0)) {
>          fprintf(stderr, "KVM: Unexpected error removing TCE table:
> %s",

Thanks, I'm running on x86 so this code didn't get built for me.

Regards,

Anthony Liguori

> -- 
> 1.8.3.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]