All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] serial: Update parameters after load
@ 2010-09-13 13:47 Michal Novotny
  2010-09-15 13:53 ` Edgar E. Iglesias
  0 siblings, 1 reply; 5+ messages in thread
From: Michal Novotny @ 2010-09-13 13:47 UTC (permalink / raw)
  To: qemu-devel

Hi,

this is the patch to update serial port parameters after guest is
already loaded.

Signed-off-by: Michal Novotny<minovotn@redhat.com>
---
  hw/serial.c |    1 +
  1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/hw/serial.c b/hw/serial.c
index 49431b2..bf74876 100644
--- a/hw/serial.c
+++ b/hw/serial.c
@@ -674,6 +674,7 @@ static int serial_post_load(void *opaque, int version_id)
      }
      /* Initialize fcr via setter to perform essential side-effects */
      serial_ioport_write(s, 0x02, s->fcr_vmstate);
+    serial_update_parameters(s);
      return 0;
  }

-- 
1.7.2.3

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

* Re: [Qemu-devel] [PATCH] serial: Update parameters after load
  2010-09-13 13:47 [Qemu-devel] [PATCH] serial: Update parameters after load Michal Novotny
@ 2010-09-15 13:53 ` Edgar E. Iglesias
  2010-09-15 14:39   ` Michal Novotny
  0 siblings, 1 reply; 5+ messages in thread
From: Edgar E. Iglesias @ 2010-09-15 13:53 UTC (permalink / raw)
  To: Michal Novotny; +Cc: qemu-devel

On Mon, Sep 13, 2010 at 03:47:12PM +0200, Michal Novotny wrote:
> Hi,
> 
> this is the patch to update serial port parameters after guest is
> already loaded.

Hi

This patch didn't apply:

% git am -s ~/.maildir/minovotn/
Applying: serial: Update parameters after load
error: patch failed: hw/serial.c:674
error: hw/serial.c: patch does not apply
Patch failed at 0001 serial: Update parameters after load
When you have resolved this problem run "git am --resolved".
If you would prefer to skip this patch, instead run "git am --skip".
To restore the original branch and stop patching run "git am --abort"

> 
> Signed-off-by: Michal Novotny<minovotn@redhat.com>
                             ^^^^
                          missing space


I manually fixed both errors and applied it.

Cheers,
Edgar


> ---
>   hw/serial.c |    1 +
>   1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/hw/serial.c b/hw/serial.c
> index 49431b2..bf74876 100644
> --- a/hw/serial.c
> +++ b/hw/serial.c
> @@ -674,6 +674,7 @@ static int serial_post_load(void *opaque, int version_id)
>       }
>       /* Initialize fcr via setter to perform essential side-effects */
>       serial_ioport_write(s, 0x02, s->fcr_vmstate);
> +    serial_update_parameters(s);
>       return 0;
>   }
> 
> -- 
> 1.7.2.3

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

* Re: [Qemu-devel] [PATCH] serial: Update parameters after load
  2010-09-15 13:53 ` Edgar E. Iglesias
@ 2010-09-15 14:39   ` Michal Novotny
  2010-09-15 14:45     ` Edgar E. Iglesias
  0 siblings, 1 reply; 5+ messages in thread
From: Michal Novotny @ 2010-09-15 14:39 UTC (permalink / raw)
  To: Edgar E. Iglesias; +Cc: qemu-devel

On 09/15/2010 03:53 PM, Edgar E. Iglesias wrote:
> On Mon, Sep 13, 2010 at 03:47:12PM +0200, Michal Novotny wrote:
>    
>> Hi,
>>
>> this is the patch to update serial port parameters after guest is
>> already loaded.
>>      
> Hi
>
> This patch didn't apply:
>
> % git am -s ~/.maildir/minovotn/
> Applying: serial: Update parameters after load
> error: patch failed: hw/serial.c:674
> error: hw/serial.c: patch does not apply
> Patch failed at 0001 serial: Update parameters after load
> When you have resolved this problem run "git am --resolved".
> If you would prefer to skip this patch, instead run "git am --skip".
> To restore the original branch and stop patching run "git am --abort"
>
>    
>> Signed-off-by: Michal Novotny<minovotn@redhat.com>
>>      
>                               ^^^^
>                            missing space
>    

Hi, thanks. Nevetheless should there be a space between name and e-mail 
address? I didn't know what's right so if there should be a space please 
tell me to take care of it next time.

Thanks for applying the patch.

Regards,
Michal

>
> I manually fixed both errors and applied it.
>
> Cheers,
> Edgar
>
>
>    
>> ---
>>    hw/serial.c |    1 +
>>    1 files changed, 1 insertions(+), 0 deletions(-)
>>
>> diff --git a/hw/serial.c b/hw/serial.c
>> index 49431b2..bf74876 100644
>> --- a/hw/serial.c
>> +++ b/hw/serial.c
>> @@ -674,6 +674,7 @@ static int serial_post_load(void *opaque, int version_id)
>>        }
>>        /* Initialize fcr via setter to perform essential side-effects */
>>        serial_ioport_write(s, 0x02, s->fcr_vmstate);
>> +    serial_update_parameters(s);
>>        return 0;
>>    }
>>
>> -- 
>> 1.7.2.3
>>      


-- 
Michal Novotny<minovotn@redhat.com>, RHCE
Virtualization Team (xen userspace), Red Hat

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

* Re: [Qemu-devel] [PATCH] serial: Update parameters after load
  2010-09-15 14:39   ` Michal Novotny
@ 2010-09-15 14:45     ` Edgar E. Iglesias
  2010-09-15 15:04       ` Michal Novotny
  0 siblings, 1 reply; 5+ messages in thread
From: Edgar E. Iglesias @ 2010-09-15 14:45 UTC (permalink / raw)
  To: Michal Novotny; +Cc: qemu-devel

On Wed, Sep 15, 2010 at 04:39:20PM +0200, Michal Novotny wrote:
> On 09/15/2010 03:53 PM, Edgar E. Iglesias wrote:
> > On Mon, Sep 13, 2010 at 03:47:12PM +0200, Michal Novotny wrote:
> >    
> >> Hi,
> >>
> >> this is the patch to update serial port parameters after guest is
> >> already loaded.
> >>      
> > Hi
> >
> > This patch didn't apply:
> >
> > % git am -s ~/.maildir/minovotn/
> > Applying: serial: Update parameters after load
> > error: patch failed: hw/serial.c:674
> > error: hw/serial.c: patch does not apply
> > Patch failed at 0001 serial: Update parameters after load
> > When you have resolved this problem run "git am --resolved".
> > If you would prefer to skip this patch, instead run "git am --skip".
> > To restore the original branch and stop patching run "git am --abort"
> >
> >    
> >> Signed-off-by: Michal Novotny<minovotn@redhat.com>
> >>      
> >                               ^^^^
> >                            missing space
> >    
> 
> Hi, thanks. Nevetheless should there be a space between name and e-mail 
> address? I didn't know what's right so if there should be a space please 
> tell me to take care of it next time.

Hi Michal,

If you setup your git environment with your name and email, you can
pass the -s flag to commit or set the format.signoff config option
and git will generate the SoB line for you.

Cheers

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

* Re: [Qemu-devel] [PATCH] serial: Update parameters after load
  2010-09-15 14:45     ` Edgar E. Iglesias
@ 2010-09-15 15:04       ` Michal Novotny
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Novotny @ 2010-09-15 15:04 UTC (permalink / raw)
  To: Edgar E. Iglesias; +Cc: qemu-devel

On 09/15/2010 04:45 PM, Edgar E. Iglesias wrote:
> On Wed, Sep 15, 2010 at 04:39:20PM +0200, Michal Novotny wrote:
>    
>> On 09/15/2010 03:53 PM, Edgar E. Iglesias wrote:
>>      
>>> On Mon, Sep 13, 2010 at 03:47:12PM +0200, Michal Novotny wrote:
>>>
>>>        
>>>> Hi,
>>>>
>>>> this is the patch to update serial port parameters after guest is
>>>> already loaded.
>>>>
>>>>          
>>> Hi
>>>
>>> This patch didn't apply:
>>>
>>> % git am -s ~/.maildir/minovotn/
>>> Applying: serial: Update parameters after load
>>> error: patch failed: hw/serial.c:674
>>> error: hw/serial.c: patch does not apply
>>> Patch failed at 0001 serial: Update parameters after load
>>> When you have resolved this problem run "git am --resolved".
>>> If you would prefer to skip this patch, instead run "git am --skip".
>>> To restore the original branch and stop patching run "git am --abort"
>>>
>>>
>>>        
>>>> Signed-off-by: Michal Novotny<minovotn@redhat.com>
>>>>
>>>>          
>>>                                ^^^^
>>>                             missing space
>>>
>>>        
>> Hi, thanks. Nevetheless should there be a space between name and e-mail
>> address? I didn't know what's right so if there should be a space please
>> tell me to take care of it next time.
>>      
> Hi Michal,
>
> If you setup your git environment with your name and email, you can
> pass the -s flag to commit or set the format.signoff config option
> and git will generate the SoB line for you.
>
> Cheers
>    
Ok, thanks. I'm already having it but I didn't know about the 
format.signoff option.

Thanks,
Michal

-- 
Michal Novotny<minovotn@redhat.com>, RHCE
Virtualization Team (xen userspace), Red Hat

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

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

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-13 13:47 [Qemu-devel] [PATCH] serial: Update parameters after load Michal Novotny
2010-09-15 13:53 ` Edgar E. Iglesias
2010-09-15 14:39   ` Michal Novotny
2010-09-15 14:45     ` Edgar E. Iglesias
2010-09-15 15:04       ` Michal Novotny

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.