All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v1 1/1] generic-loader: file: Only set a PC if a CPU is specified
@ 2016-11-12  2:51 Alistair Francis
  2016-11-12  4:06 ` Edgar E. Iglesias
  0 siblings, 1 reply; 4+ messages in thread
From: Alistair Francis @ 2016-11-12  2:51 UTC (permalink / raw)
  To: qemu-devel, peter.maydell
  Cc: alistair.francis, alistair23, edgar.iglesias, edgar.iglesias

This patch fixes the generic-loader file loading to only set the program
counter if a CPU is specified. This follows what is written in the
documentation and was always part of the original intention.

Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
---

 hw/core/generic-loader.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/hw/core/generic-loader.c b/hw/core/generic-loader.c
index 79ab6df..208f549 100644
--- a/hw/core/generic-loader.c
+++ b/hw/core/generic-loader.c
@@ -93,7 +93,12 @@ static void generic_loader_realize(DeviceState *dev, Error **errp)
                        "image");
             return;
         }
-        s->set_pc = true;
+        /* The user specified a file, only set the PC if they also specified
+         * a CPU to use.
+         */
+        if (s->cpu_num != CPU_NONE) {
+            s->set_pc = true;
+        }
     } else if (s->addr) {
         /* User is setting the PC */
         if (s->data || s->data_len || s->data_be) {
-- 
2.7.4

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

* Re: [Qemu-devel] [PATCH v1 1/1] generic-loader: file: Only set a PC if a CPU is specified
  2016-11-12  2:51 [Qemu-devel] [PATCH v1 1/1] generic-loader: file: Only set a PC if a CPU is specified Alistair Francis
@ 2016-11-12  4:06 ` Edgar E. Iglesias
  2016-11-16 22:02   ` Alistair Francis
  0 siblings, 1 reply; 4+ messages in thread
From: Edgar E. Iglesias @ 2016-11-12  4:06 UTC (permalink / raw)
  To: Alistair Francis; +Cc: qemu-devel, peter.maydell, alistair23, edgar.iglesias

On Fri, Nov 11, 2016 at 06:51:20PM -0800, Alistair Francis wrote:
> This patch fixes the generic-loader file loading to only set the program
> counter if a CPU is specified. This follows what is written in the
> documentation and was always part of the original intention.

Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>


> 
> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
> ---
> 
>  hw/core/generic-loader.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/hw/core/generic-loader.c b/hw/core/generic-loader.c
> index 79ab6df..208f549 100644
> --- a/hw/core/generic-loader.c
> +++ b/hw/core/generic-loader.c
> @@ -93,7 +93,12 @@ static void generic_loader_realize(DeviceState *dev, Error **errp)
>                         "image");
>              return;
>          }
> -        s->set_pc = true;
> +        /* The user specified a file, only set the PC if they also specified
> +         * a CPU to use.
> +         */
> +        if (s->cpu_num != CPU_NONE) {
> +            s->set_pc = true;
> +        }
>      } else if (s->addr) {
>          /* User is setting the PC */
>          if (s->data || s->data_len || s->data_be) {
> -- 
> 2.7.4
> 

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

* Re: [Qemu-devel] [PATCH v1 1/1] generic-loader: file: Only set a PC if a CPU is specified
  2016-11-12  4:06 ` Edgar E. Iglesias
@ 2016-11-16 22:02   ` Alistair Francis
  2016-11-28 11:29     ` Peter Maydell
  0 siblings, 1 reply; 4+ messages in thread
From: Alistair Francis @ 2016-11-16 22:02 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Alistair Francis, qemu-devel@nongnu.org Developers,
	Edgar Iglesias, Edgar E. Iglesias

On Fri, Nov 11, 2016 at 8:06 PM, Edgar E. Iglesias
<edgar.iglesias@gmail.com> wrote:
> On Fri, Nov 11, 2016 at 06:51:20PM -0800, Alistair Francis wrote:
>> This patch fixes the generic-loader file loading to only set the program
>> counter if a CPU is specified. This follows what is written in the
>> documentation and was always part of the original intention.
>
> Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>

Peter can this go through your queue?

I think it should make it into 2.8 as it matches the documentation and
this will be the first release with the device loader.

Thanks,

Alistair

>
>
>>
>> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
>> ---
>>
>>  hw/core/generic-loader.c | 7 ++++++-
>>  1 file changed, 6 insertions(+), 1 deletion(-)
>>
>> diff --git a/hw/core/generic-loader.c b/hw/core/generic-loader.c
>> index 79ab6df..208f549 100644
>> --- a/hw/core/generic-loader.c
>> +++ b/hw/core/generic-loader.c
>> @@ -93,7 +93,12 @@ static void generic_loader_realize(DeviceState *dev, Error **errp)
>>                         "image");
>>              return;
>>          }
>> -        s->set_pc = true;
>> +        /* The user specified a file, only set the PC if they also specified
>> +         * a CPU to use.
>> +         */
>> +        if (s->cpu_num != CPU_NONE) {
>> +            s->set_pc = true;
>> +        }
>>      } else if (s->addr) {
>>          /* User is setting the PC */
>>          if (s->data || s->data_len || s->data_be) {
>> --
>> 2.7.4
>>

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

* Re: [Qemu-devel] [PATCH v1 1/1] generic-loader: file: Only set a PC if a CPU is specified
  2016-11-16 22:02   ` Alistair Francis
@ 2016-11-28 11:29     ` Peter Maydell
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2016-11-28 11:29 UTC (permalink / raw)
  To: Alistair Francis
  Cc: qemu-devel@nongnu.org Developers, Edgar Iglesias, Edgar E. Iglesias

On 16 November 2016 at 22:02, Alistair Francis
<alistair.francis@xilinx.com> wrote:
> On Fri, Nov 11, 2016 at 8:06 PM, Edgar E. Iglesias
> <edgar.iglesias@gmail.com> wrote:
>> On Fri, Nov 11, 2016 at 06:51:20PM -0800, Alistair Francis wrote:
>>> This patch fixes the generic-loader file loading to only set the program
>>> counter if a CPU is specified. This follows what is written in the
>>> documentation and was always part of the original intention.
>>
>> Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
>
> Peter can this go through your queue?
>
> I think it should make it into 2.8 as it matches the documentation and
> this will be the first release with the device loader.

Yes, I think this counts as a bugfix -- applied to target-arm.next.

-- PMM

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

end of thread, other threads:[~2016-11-28 11:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-12  2:51 [Qemu-devel] [PATCH v1 1/1] generic-loader: file: Only set a PC if a CPU is specified Alistair Francis
2016-11-12  4:06 ` Edgar E. Iglesias
2016-11-16 22:02   ` Alistair Francis
2016-11-28 11:29     ` Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.