All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix
@ 2010-06-23 14:44 Amit Shah
  2010-06-23 14:50 ` [Qemu-devel] " Paolo Bonzini
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Amit Shah @ 2010-06-23 14:44 UTC (permalink / raw)
  To: qemu list
  Cc: Amit Shah, Paolo Bonzini, Jan Kiszka, Gleb Natapov, Juan Quintela

qemu-config.c doesn't contain any target-specific code, and the
TARGET_I386 conditional code didn't get compiled as a result. Removing
this enables the driftfix parameter for rtc.

Signed-off-by: Amit Shah <amit.shah@redhat.com>
---
 qemu-config.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/qemu-config.c b/qemu-config.c
index 95abe61..730ffd9 100644
--- a/qemu-config.c
+++ b/qemu-config.c
@@ -247,11 +247,9 @@ QemuOptsList qemu_rtc_opts = {
         },{
             .name = "clock",
             .type = QEMU_OPT_STRING,
-#ifdef TARGET_I386
         },{
             .name = "driftfix",
             .type = QEMU_OPT_STRING,
-#endif
         },
         { /* end if list */ }
     },
-- 
1.7.0.1

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

* [Qemu-devel] Re: [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix
  2010-06-23 14:44 [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix Amit Shah
@ 2010-06-23 14:50 ` Paolo Bonzini
  2010-06-23 14:50 ` Juan Quintela
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Paolo Bonzini @ 2010-06-23 14:50 UTC (permalink / raw)
  To: Amit Shah; +Cc: Jan Kiszka, qemu list, Gleb Natapov, Juan Quintela

On 06/23/2010 04:44 PM, Amit Shah wrote:
> qemu-config.c doesn't contain any target-specific code, and the
> TARGET_I386 conditional code didn't get compiled as a result. Removing
> this enables the driftfix parameter for rtc.
>
> Signed-off-by: Amit Shah<amit.shah@redhat.com>
> ---
>   qemu-config.c |    2 --
>   1 files changed, 0 insertions(+), 2 deletions(-)
>
> diff --git a/qemu-config.c b/qemu-config.c
> index 95abe61..730ffd9 100644
> --- a/qemu-config.c
> +++ b/qemu-config.c
> @@ -247,11 +247,9 @@ QemuOptsList qemu_rtc_opts = {
>           },{
>               .name = "clock",
>               .type = QEMU_OPT_STRING,
> -#ifdef TARGET_I386
>           },{
>               .name = "driftfix",
>               .type = QEMU_OPT_STRING,
> -#endif
>           },
>           { /* end if list */ }
>       },

Acked-by: Paolo Bonzini <pbonzini@redhat.com>

Paolo

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

* [Qemu-devel] Re: [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix
  2010-06-23 14:44 [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix Amit Shah
  2010-06-23 14:50 ` [Qemu-devel] " Paolo Bonzini
@ 2010-06-23 14:50 ` Juan Quintela
  2010-06-24 10:02 ` [Qemu-devel] " Jes Sorensen
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Juan Quintela @ 2010-06-23 14:50 UTC (permalink / raw)
  To: Amit Shah; +Cc: Paolo Bonzini, Jan Kiszka, qemu list, Gleb Natapov

Amit Shah <amit.shah@redhat.com> wrote:
> qemu-config.c doesn't contain any target-specific code, and the
> TARGET_I386 conditional code didn't get compiled as a result. Removing
> this enables the driftfix parameter for rtc.
>
> Signed-off-by: Amit Shah <amit.shah@redhat.com>

Acked-by: Juan Quintela <quintela@redhat.com>

Agreed.  /me had forgot that vl.c is not target dependent anymore :(

Later, Juan.

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

* Re: [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix
  2010-06-23 14:44 [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix Amit Shah
  2010-06-23 14:50 ` [Qemu-devel] " Paolo Bonzini
  2010-06-23 14:50 ` Juan Quintela
@ 2010-06-24 10:02 ` Jes Sorensen
  2010-07-14 13:32 ` Amit Shah
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Jes Sorensen @ 2010-06-24 10:02 UTC (permalink / raw)
  To: Amit Shah
  Cc: Paolo Bonzini, Jan Kiszka, qemu list, Gleb Natapov, Juan Quintela

On 06/23/10 16:44, Amit Shah wrote:
> qemu-config.c doesn't contain any target-specific code, and the
> TARGET_I386 conditional code didn't get compiled as a result. Removing
> this enables the driftfix parameter for rtc.
> 
> Signed-off-by: Amit Shah <amit.shah@redhat.com>
> ---
>  qemu-config.c |    2 --
>  1 files changed, 0 insertions(+), 2 deletions(-)

I really don't like exposing all these options in targets where they are
not functional. It would be really nice if we could come up with a
better way to handle this without just exposing them globally.

Cheers,
Jes

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

* Re: [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix
  2010-06-23 14:44 [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix Amit Shah
                   ` (2 preceding siblings ...)
  2010-06-24 10:02 ` [Qemu-devel] " Jes Sorensen
@ 2010-07-14 13:32 ` Amit Shah
  2010-07-27  9:48   ` [Qemu-devel] [PING^2] " Paolo Bonzini
  2010-08-06 11:12 ` [Qemu-devel] " Daniel P. Berrange
  2010-08-19 15:19 ` Anthony Liguori
  5 siblings, 1 reply; 10+ messages in thread
From: Amit Shah @ 2010-07-14 13:32 UTC (permalink / raw)
  To: qemu list; +Cc: Paolo Bonzini, Jan Kiszka, Gleb Natapov, Juan Quintela

On (Wed) Jun 23 2010 [20:14:04], Amit Shah wrote:
> qemu-config.c doesn't contain any target-specific code, and the
> TARGET_I386 conditional code didn't get compiled as a result. Removing
> this enables the driftfix parameter for rtc.
> 
> Signed-off-by: Amit Shah <amit.shah@redhat.com>

Ping

		Amit

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

* [Qemu-devel] [PING^2] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix
  2010-07-14 13:32 ` Amit Shah
@ 2010-07-27  9:48   ` Paolo Bonzini
  0 siblings, 0 replies; 10+ messages in thread
From: Paolo Bonzini @ 2010-07-27  9:48 UTC (permalink / raw)
  To: Amit Shah; +Cc: Jan Kiszka, qemu list, Gleb Natapov, Juan Quintela

On 07/14/2010 03:32 PM, Amit Shah wrote:
> On (Wed) Jun 23 2010 [20:14:04], Amit Shah wrote:
>> qemu-config.c doesn't contain any target-specific code, and the
>> TARGET_I386 conditional code didn't get compiled as a result. Removing
>> this enables the driftfix parameter for rtc.
>>
>> Signed-off-by: Amit Shah<amit.shah@redhat.com>
>
> Ping

Ping^2

Paolo

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

* Re: [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix
  2010-06-23 14:44 [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix Amit Shah
                   ` (3 preceding siblings ...)
  2010-07-14 13:32 ` Amit Shah
@ 2010-08-06 11:12 ` Daniel P. Berrange
  2010-08-06 20:40   ` Amit Shah
  2010-08-19 15:19 ` Anthony Liguori
  5 siblings, 1 reply; 10+ messages in thread
From: Daniel P. Berrange @ 2010-08-06 11:12 UTC (permalink / raw)
  To: Amit Shah
  Cc: Paolo Bonzini, Jan Kiszka, qemu list, Gleb Natapov, Juan Quintela

On Wed, Jun 23, 2010 at 08:14:04PM +0530, Amit Shah wrote:
> qemu-config.c doesn't contain any target-specific code, and the
> TARGET_I386 conditional code didn't get compiled as a result. Removing
> this enables the driftfix parameter for rtc.
> 
> Signed-off-by: Amit Shah <amit.shah@redhat.com>
> ---
>  qemu-config.c |    2 --
>  1 files changed, 0 insertions(+), 2 deletions(-)
> 
> diff --git a/qemu-config.c b/qemu-config.c
> index 95abe61..730ffd9 100644
> --- a/qemu-config.c
> +++ b/qemu-config.c
> @@ -247,11 +247,9 @@ QemuOptsList qemu_rtc_opts = {
>          },{
>              .name = "clock",
>              .type = QEMU_OPT_STRING,
> -#ifdef TARGET_I386
>          },{
>              .name = "driftfix",
>              .type = QEMU_OPT_STRING,
> -#endif
>          },
>          { /* end if list */ }
>      },


Is there any reason this patch hasn't been applied to GIT yet ? I'm told 
that using this option is critical to making certain guests work reliably
so we want to use it from libvirt/virt-manager for the OS in question.

Regards,
Daniel
-- 
|: Red Hat, Engineering, London    -o-   http://people.redhat.com/berrange/ :|
|: http://libvirt.org -o- http://virt-manager.org -o- http://deltacloud.org :|
|: http://autobuild.org        -o-         http://search.cpan.org/~danberr/ :|
|: GnuPG: 7D3B9505  -o-   F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 :|

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

* Re: [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix
  2010-08-06 11:12 ` [Qemu-devel] " Daniel P. Berrange
@ 2010-08-06 20:40   ` Amit Shah
  2010-08-09 13:29     ` Anthony Liguori
  0 siblings, 1 reply; 10+ messages in thread
From: Amit Shah @ 2010-08-06 20:40 UTC (permalink / raw)
  To: Daniel P. Berrange
  Cc: Gleb Natapov, Juan Quintela, qemu list, Jan Kiszka, Paolo Bonzini

On (Fri) Aug 06 2010 [12:12:45], Daniel P. Berrange wrote:
> On Wed, Jun 23, 2010 at 08:14:04PM +0530, Amit Shah wrote:
> > qemu-config.c doesn't contain any target-specific code, and the
> > TARGET_I386 conditional code didn't get compiled as a result. Removing
> > this enables the driftfix parameter for rtc.
> > 
> > Signed-off-by: Amit Shah <amit.shah@redhat.com>
> > ---
> >  qemu-config.c |    2 --
> >  1 files changed, 0 insertions(+), 2 deletions(-)
> > 
> > diff --git a/qemu-config.c b/qemu-config.c
> > index 95abe61..730ffd9 100644
> > --- a/qemu-config.c
> > +++ b/qemu-config.c
> > @@ -247,11 +247,9 @@ QemuOptsList qemu_rtc_opts = {
> >          },{
> >              .name = "clock",
> >              .type = QEMU_OPT_STRING,
> > -#ifdef TARGET_I386
> >          },{
> >              .name = "driftfix",
> >              .type = QEMU_OPT_STRING,
> > -#endif
> >          },
> >          { /* end if list */ }
> >      },
> 
> 
> Is there any reason this patch hasn't been applied to GIT yet ? I'm told 
> that using this option is critical to making certain guests work reliably
> so we want to use it from libvirt/virt-manager for the OS in question.

Multiple pings have gone out already; I hope it's in someone's queue to
be applied.

		Amit

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

* Re: [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix
  2010-08-06 20:40   ` Amit Shah
@ 2010-08-09 13:29     ` Anthony Liguori
  0 siblings, 0 replies; 10+ messages in thread
From: Anthony Liguori @ 2010-08-09 13:29 UTC (permalink / raw)
  To: Amit Shah
  Cc: Gleb Natapov, Juan Quintela, qemu list, Jan Kiszka, Paolo Bonzini

On 08/06/2010 03:40 PM, Amit Shah wrote:
> On (Fri) Aug 06 2010 [12:12:45], Daniel P. Berrange wrote:
>    
>> On Wed, Jun 23, 2010 at 08:14:04PM +0530, Amit Shah wrote:
>>      
>>> qemu-config.c doesn't contain any target-specific code, and the
>>> TARGET_I386 conditional code didn't get compiled as a result. Removing
>>> this enables the driftfix parameter for rtc.
>>>
>>> Signed-off-by: Amit Shah<amit.shah@redhat.com>
>>> ---
>>>   qemu-config.c |    2 --
>>>   1 files changed, 0 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/qemu-config.c b/qemu-config.c
>>> index 95abe61..730ffd9 100644
>>> --- a/qemu-config.c
>>> +++ b/qemu-config.c
>>> @@ -247,11 +247,9 @@ QemuOptsList qemu_rtc_opts = {
>>>           },{
>>>               .name = "clock",
>>>               .type = QEMU_OPT_STRING,
>>> -#ifdef TARGET_I386
>>>           },{
>>>               .name = "driftfix",
>>>               .type = QEMU_OPT_STRING,
>>> -#endif
>>>           },
>>>           { /* end if list */ }
>>>       },
>>>        
>>
>> Is there any reason this patch hasn't been applied to GIT yet ? I'm told
>> that using this option is critical to making certain guests work reliably
>> so we want to use it from libvirt/virt-manager for the OS in question.
>>      
> Multiple pings have gone out already; I hope it's in someone's queue to
> be applied
>    

Sorry, I've got it now.  In the future, please resend patches with 
[RESEND] as opposed to just bumping it.

Regards,

Anthony Liguori

> 		Amit
>    

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

* Re: [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix
  2010-06-23 14:44 [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix Amit Shah
                   ` (4 preceding siblings ...)
  2010-08-06 11:12 ` [Qemu-devel] " Daniel P. Berrange
@ 2010-08-19 15:19 ` Anthony Liguori
  5 siblings, 0 replies; 10+ messages in thread
From: Anthony Liguori @ 2010-08-19 15:19 UTC (permalink / raw)
  To: Amit Shah
  Cc: Paolo Bonzini, Jan Kiszka, qemu list, Gleb Natapov, Juan Quintela

On 06/23/2010 09:44 AM, Amit Shah wrote:
> qemu-config.c doesn't contain any target-specific code, and the
> TARGET_I386 conditional code didn't get compiled as a result. Removing
> this enables the driftfix parameter for rtc.
>
> Signed-off-by: Amit Shah<amit.shah@redhat.com>
>    

Applied.  Thanks.

Regards,

Anthony Liguori
> ---
>   qemu-config.c |    2 --
>   1 files changed, 0 insertions(+), 2 deletions(-)
>
> diff --git a/qemu-config.c b/qemu-config.c
> index 95abe61..730ffd9 100644
> --- a/qemu-config.c
> +++ b/qemu-config.c
> @@ -247,11 +247,9 @@ QemuOptsList qemu_rtc_opts = {
>           },{
>               .name = "clock",
>               .type = QEMU_OPT_STRING,
> -#ifdef TARGET_I386
>           },{
>               .name = "driftfix",
>               .type = QEMU_OPT_STRING,
> -#endif
>           },
>           { /* end if list */ }
>       },
>    

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

end of thread, other threads:[~2010-08-19 15:19 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-23 14:44 [Qemu-devel] [PATCH v2] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix Amit Shah
2010-06-23 14:50 ` [Qemu-devel] " Paolo Bonzini
2010-06-23 14:50 ` Juan Quintela
2010-06-24 10:02 ` [Qemu-devel] " Jes Sorensen
2010-07-14 13:32 ` Amit Shah
2010-07-27  9:48   ` [Qemu-devel] [PING^2] " Paolo Bonzini
2010-08-06 11:12 ` [Qemu-devel] " Daniel P. Berrange
2010-08-06 20:40   ` Amit Shah
2010-08-09 13:29     ` Anthony Liguori
2010-08-19 15:19 ` Anthony Liguori

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.