qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* Re: [Qemu-devel] backport three changes for v1.7.1
       [not found] <56EA75BA695AE044ACFB41322F6D2BF44CE7794D@BADAG02.ba.imgtec.org>
@ 2014-01-08  1:30 ` Petar Jovanovic
  2014-01-08  4:52   ` Stefan Hajnoczi
  0 siblings, 1 reply; 3+ messages in thread
From: Petar Jovanovic @ 2014-01-08  1:30 UTC (permalink / raw)
  To: qemu-stable ‎[qemu-stable@nongnu.org]‎; +Cc: qemu-devel@nongnu.org

[-- Attachment #1: Type: text/plain, Size: 1968 bytes --]

ping
+cc:  qemu-devel@nongnu.org

________________________________
From: Petar Jovanovic
Sent: Tuesday, December 10, 2013 10:32 AM
To: qemu-stable ‎[qemu-stable@nongnu.org]‎
Subject: backport three changes for v1.7.1

Can someone cherry-pick these three changes and put it into the 1.7 stable
release, so they are in for v1.7.1?

commit 4d66261f71f2efa31e1052e4041c5ee505572fe5
Author: Petar Jovanovic <petar.jovanovic@imgtec.com>
Date:   Fri Nov 29 17:27:42 2013 +0100

    target-mips: fix 64-bit FPU config for user-mode emulation

    FR bit should be initialized to 1 for MIPS64, under condition that this
    bit is writable and that CPU has an FPU unit. It should be initialized to
    zero for MIPS32.
    This fixes different MIPS32 issues with FPU instructions whose behaviour
    defaulted to 64-bit FPU mode.

    Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>

commit a29267846a52b4ca294ba3a962b74b67df7ce6d2
Author: Petar Jovanovic <petar.jovanovic@imgtec.com>
Date:   Wed Oct 30 14:46:32 2013 +0100

    linux-user: pass correct parameter to do_shmctl()

    Fix shmctl issue by passing correct parameter buf to do_shmctl().

    Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
    Signed-off-by: Riku Voipio <riku.voipio@linaro.org>

commit 55a2b1631fb343edac4a2d4596c72e58ee1372b3
Author: Petar Jovanovic <petar.jovanovic@imgtec.com>
Date:   Wed Oct 30 14:46:31 2013 +0100

    linux-user: create target_structs header to place ipc_perm and shmid_ds

    Creating target_structs header in linux-user/$arch/ and making
    target_ipc_perm and target_shmid_ds its first inhabitants.
    The struct defintions may/should be further fine-tuned by arch maintainers.

    Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
    Signed-off-by: Riku Voipio <riku.voipio@linaro.org>



Thank you.

Regards,
Petar

[-- Attachment #2: Type: text/html, Size: 4325 bytes --]

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

* Re: [Qemu-devel] backport three changes for v1.7.1
  2014-01-08  1:30 ` [Qemu-devel] backport three changes for v1.7.1 Petar Jovanovic
@ 2014-01-08  4:52   ` Stefan Hajnoczi
  2014-02-05  2:16     ` Petar Jovanovic
  0 siblings, 1 reply; 3+ messages in thread
From: Stefan Hajnoczi @ 2014-01-08  4:52 UTC (permalink / raw)
  To: Petar Jovanovic
  Cc: Michael Roth, qemu-stable ‎[qemu-stable@nongnu.org]‎,
	qemu-devel@nongnu.org

On Wed, Jan 08, 2014 at 01:30:53AM +0000, Petar Jovanovic wrote:
> ping
> +cc:  qemu-devel@nongnu.org

Adding Mike Roth on CC for -stable.

> ________________________________
> From: Petar Jovanovic
> Sent: Tuesday, December 10, 2013 10:32 AM
> To: qemu-stable ‎[qemu-stable@nongnu.org]‎
> Subject: backport three changes for v1.7.1
> 
> Can someone cherry-pick these three changes and put it into the 1.7 stable
> release, so they are in for v1.7.1?
> 
> commit 4d66261f71f2efa31e1052e4041c5ee505572fe5
> Author: Petar Jovanovic <petar.jovanovic@imgtec.com>
> Date:   Fri Nov 29 17:27:42 2013 +0100
> 
>     target-mips: fix 64-bit FPU config for user-mode emulation
> 
>     FR bit should be initialized to 1 for MIPS64, under condition that this
>     bit is writable and that CPU has an FPU unit. It should be initialized to
>     zero for MIPS32.
>     This fixes different MIPS32 issues with FPU instructions whose behaviour
>     defaulted to 64-bit FPU mode.
> 
>     Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
>     Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
> 
> commit a29267846a52b4ca294ba3a962b74b67df7ce6d2
> Author: Petar Jovanovic <petar.jovanovic@imgtec.com>
> Date:   Wed Oct 30 14:46:32 2013 +0100
> 
>     linux-user: pass correct parameter to do_shmctl()
> 
>     Fix shmctl issue by passing correct parameter buf to do_shmctl().
> 
>     Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
>     Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
> 
> commit 55a2b1631fb343edac4a2d4596c72e58ee1372b3
> Author: Petar Jovanovic <petar.jovanovic@imgtec.com>
> Date:   Wed Oct 30 14:46:31 2013 +0100
> 
>     linux-user: create target_structs header to place ipc_perm and shmid_ds
> 
>     Creating target_structs header in linux-user/$arch/ and making
>     target_ipc_perm and target_shmid_ds its first inhabitants.
>     The struct defintions may/should be further fine-tuned by arch maintainers.
> 
>     Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
>     Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
> 
> 
> 
> Thank you.
> 
> Regards,
> Petar

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

* Re: [Qemu-devel] backport three changes for v1.7.1
  2014-01-08  4:52   ` Stefan Hajnoczi
@ 2014-02-05  2:16     ` Petar Jovanovic
  0 siblings, 0 replies; 3+ messages in thread
From: Petar Jovanovic @ 2014-02-05  2:16 UTC (permalink / raw)
  To: Stefan Hajnoczi
  Cc: Michael Roth, qemu-stable ‎[qemu-stable@nongnu.org]‎,
	qemu-devel@nongnu.org

ping
________________________________________
From: Stefan Hajnoczi [stefanha@gmail.com]
Sent: Wednesday, January 08, 2014 5:52 AM
To: Petar Jovanovic
Cc: qemu-stable ‎[qemu-stable@nongnu.org]‎; qemu-devel@nongnu.org; Michael Roth
Subject: Re: [Qemu-devel] backport three changes for v1.7.1

On Wed, Jan 08, 2014 at 01:30:53AM +0000, Petar Jovanovic wrote:
> ping
> +cc:  qemu-devel@nongnu.org

Adding Mike Roth on CC for -stable.

> ________________________________
> From: Petar Jovanovic
> Sent: Tuesday, December 10, 2013 10:32 AM
> To: qemu-stable ‎[qemu-stable@nongnu.org]‎
> Subject: backport three changes for v1.7.1
>
> Can someone cherry-pick these three changes and put it into the 1.7 stable
> release, so they are in for v1.7.1?
>
> commit 4d66261f71f2efa31e1052e4041c5ee505572fe5
> Author: Petar Jovanovic <petar.jovanovic@imgtec.com>
> Date:   Fri Nov 29 17:27:42 2013 +0100
>
>     target-mips: fix 64-bit FPU config for user-mode emulation
>
>     FR bit should be initialized to 1 for MIPS64, under condition that this
>     bit is writable and that CPU has an FPU unit. It should be initialized to
>     zero for MIPS32.
>     This fixes different MIPS32 issues with FPU instructions whose behaviour
>     defaulted to 64-bit FPU mode.
>
>     Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
>     Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
>
> commit a29267846a52b4ca294ba3a962b74b67df7ce6d2
> Author: Petar Jovanovic <petar.jovanovic@imgtec.com>
> Date:   Wed Oct 30 14:46:32 2013 +0100
>
>     linux-user: pass correct parameter to do_shmctl()
>
>     Fix shmctl issue by passing correct parameter buf to do_shmctl().
>
>     Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
>     Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
>
> commit 55a2b1631fb343edac4a2d4596c72e58ee1372b3
> Author: Petar Jovanovic <petar.jovanovic@imgtec.com>
> Date:   Wed Oct 30 14:46:31 2013 +0100
>
>     linux-user: create target_structs header to place ipc_perm and shmid_ds
>
>     Creating target_structs header in linux-user/$arch/ and making
>     target_ipc_perm and target_shmid_ds its first inhabitants.
>     The struct defintions may/should be further fine-tuned by arch maintainers.
>
>     Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
>     Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
>
>
>
> Thank you.
>
> Regards,
> Petar

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

end of thread, other threads:[~2014-02-05  2:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <56EA75BA695AE044ACFB41322F6D2BF44CE7794D@BADAG02.ba.imgtec.org>
2014-01-08  1:30 ` [Qemu-devel] backport three changes for v1.7.1 Petar Jovanovic
2014-01-08  4:52   ` Stefan Hajnoczi
2014-02-05  2:16     ` Petar Jovanovic

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