kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [KVM][Kemari]: Build error fix
       [not found] <20111202125100.9872.75859.sendpatchset@skywalker>
@ 2011-12-05  2:45 ` OHMURA Kei
  2012-06-27 20:34   ` Sterling Windmill
  2012-06-27 20:36   ` [Kemari]: " Sterling Windmill
  0 siblings, 2 replies; 4+ messages in thread
From: OHMURA Kei @ 2011-12-05  2:45 UTC (permalink / raw)
  To: Pradeep Kumar; +Cc: tamura.yoshiaki, qemu-devel, kvm

On 2011/12/02 21:51, Pradeep Kumar wrote:
> It fixes build failure.
> 
> I hit this error, after succsfull migration and sync.
> 
> (qemu) qemu-system-x86_64: fill buffer failed, Interrupted system call
> 
> qemu-system-x86_64: recv header failed
> 
> qemu-system-x86_64: recv ack failed
> 
> qemu_transaction_begin failed

Did you use master branch?
It is not latest version. next branch is latest and fixed error.

git://kemari.git.sourceforge.net/gitroot/kemari/kemari next

Thanks,
Kei

> 
> Any one working on this now? 
> 
>>From 827c04da6574be80d8352acd7c40b0b4524af5f4 Mon Sep 17 00:00:00 2001
> Date: Fri, 2 Dec 2011 18:11:40 +0530
> Subject: [PATCH]  [Qemu][Kemari]: Build Failure
>    Signed-off-by: pradeep <psuriset@linux.vnet.ibm.com>
>    modified:   ft_trans_file.c
> 
> ---
>  ft_trans_file.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/ft_trans_file.c b/ft_trans_file.c
> index 4e33034..dc36757 100644
> --- a/ft_trans_file.c
> +++ b/ft_trans_file.c
> @@ -174,7 +174,7 @@ static int ft_trans_send_header(QEMUFileFtTrans *s,
>  static int ft_trans_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
>  {
>      QEMUFileFtTrans *s = opaque;
> -    ssize_t ret;
> +    ssize_t ret = 0;
>  
>      trace_ft_trans_put_buffer(size, pos);
>

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

* Re: [KVM][Kemari]: Build error fix
  2011-12-05  2:45 ` [KVM][Kemari]: Build error fix OHMURA Kei
@ 2012-06-27 20:34   ` Sterling Windmill
  2012-06-28 19:13     ` OHMURA Kei
  2012-06-27 20:36   ` [Kemari]: " Sterling Windmill
  1 sibling, 1 reply; 4+ messages in thread
From: Sterling Windmill @ 2012-06-27 20:34 UTC (permalink / raw)
  To: OHMURA Kei; +Cc: tamura.yoshiaki, qemu-devel, Pradeep Kumar, kvm

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

Is Kemari still in active development?

Best regards,
Sterling Windmill

On Sun, Dec 4, 2011 at 9:45 PM, OHMURA Kei <ohmura.kei@lab.ntt.co.jp> wrote:

> On 2011/12/02 21:51, Pradeep Kumar wrote:
> > It fixes build failure.
> >
> > I hit this error, after succsfull migration and sync.
> >
> > (qemu) qemu-system-x86_64: fill buffer failed, Interrupted system call
> >
> > qemu-system-x86_64: recv header failed
> >
> > qemu-system-x86_64: recv ack failed
> >
> > qemu_transaction_begin failed
>
> Did you use master branch?
> It is not latest version. next branch is latest and fixed error.
>
> git://kemari.git.sourceforge.net/gitroot/kemari/kemari next
>
> Thanks,
> Kei
>
> >
> > Any one working on this now?
> >
> >>From 827c04da6574be80d8352acd7c40b0b4524af5f4 Mon Sep 17 00:00:00 2001
> > Date: Fri, 2 Dec 2011 18:11:40 +0530
> > Subject: [PATCH]  [Qemu][Kemari]: Build Failure
> >    Signed-off-by: pradeep <psuriset@linux.vnet.ibm.com>
> >    modified:   ft_trans_file.c
> >
> > ---
> >  ft_trans_file.c |    2 +-
> >  1 files changed, 1 insertions(+), 1 deletions(-)
> >
> > diff --git a/ft_trans_file.c b/ft_trans_file.c
> > index 4e33034..dc36757 100644
> > --- a/ft_trans_file.c
> > +++ b/ft_trans_file.c
> > @@ -174,7 +174,7 @@ static int ft_trans_send_header(QEMUFileFtTrans *s,
> >  static int ft_trans_put_buffer(void *opaque, const uint8_t *buf,
> int64_t pos, int size)
> >  {
> >      QEMUFileFtTrans *s = opaque;
> > -    ssize_t ret;
> > +    ssize_t ret = 0;
> >
> >      trace_ft_trans_put_buffer(size, pos);
> >
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

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

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

* Re: [Kemari]: Build error fix
  2011-12-05  2:45 ` [KVM][Kemari]: Build error fix OHMURA Kei
  2012-06-27 20:34   ` Sterling Windmill
@ 2012-06-27 20:36   ` Sterling Windmill
  1 sibling, 0 replies; 4+ messages in thread
From: Sterling Windmill @ 2012-06-27 20:36 UTC (permalink / raw)
  To: kvm

Is Kemari still in active development?

On Sun, Dec 4, 2011 at 9:45 PM, OHMURA Kei <ohmura.kei@lab.ntt.co.jp> wrote:
> On 2011/12/02 21:51, Pradeep Kumar wrote:
>> It fixes build failure.
>>
>> I hit this error, after succsfull migration and sync.
>>
>> (qemu) qemu-system-x86_64: fill buffer failed, Interrupted system call
>>
>> qemu-system-x86_64: recv header failed
>>
>> qemu-system-x86_64: recv ack failed
>>
>> qemu_transaction_begin failed
>
> Did you use master branch?
> It is not latest version. next branch is latest and fixed error.
>
> git://kemari.git.sourceforge.net/gitroot/kemari/kemari next
>
> Thanks,
> Kei
>
>>
>> Any one working on this now?
>>
>>>From 827c04da6574be80d8352acd7c40b0b4524af5f4 Mon Sep 17 00:00:00 2001
>> Date: Fri, 2 Dec 2011 18:11:40 +0530
>> Subject: [PATCH]  [Qemu][Kemari]: Build Failure
>>    Signed-off-by: pradeep <psuriset@linux.vnet.ibm.com>
>>    modified:   ft_trans_file.c
>>
>> ---
>>  ft_trans_file.c |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/ft_trans_file.c b/ft_trans_file.c
>> index 4e33034..dc36757 100644
>> --- a/ft_trans_file.c
>> +++ b/ft_trans_file.c
>> @@ -174,7 +174,7 @@ static int ft_trans_send_header(QEMUFileFtTrans *s,
>>  static int ft_trans_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
>>  {
>>      QEMUFileFtTrans *s = opaque;
>> -    ssize_t ret;
>> +    ssize_t ret = 0;
>>
>>      trace_ft_trans_put_buffer(size, pos);
>>
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [KVM][Kemari]: Build error fix
  2012-06-27 20:34   ` Sterling Windmill
@ 2012-06-28 19:13     ` OHMURA Kei
  0 siblings, 0 replies; 4+ messages in thread
From: OHMURA Kei @ 2012-06-28 19:13 UTC (permalink / raw)
  To: Sterling Windmill; +Cc: tamura.yoshiaki, qemu-devel, Pradeep Kumar, kvm

On 2012/06/28 5:34, Sterling Windmill wrote:
> Is Kemari still in active development?

No, it's not. Currently we have no intention to add new features into
Kemari.

Thanks,
Kei

>
> Best regards,
> Sterling Windmill
>
> On Sun, Dec 4, 2011 at 9:45 PM, OHMURA Kei <ohmura.kei@lab.ntt.co.jp <mailto:ohmura.kei@lab.ntt.co.jp>> wrote:
>
>     On 2011/12/02 21:51, Pradeep Kumar wrote:
>      > It fixes build failure.
>      >
>      > I hit this error, after succsfull migration and sync.
>      >
>      > (qemu) qemu-system-x86_64: fill buffer failed, Interrupted system call
>      >
>      > qemu-system-x86_64: recv header failed
>      >
>      > qemu-system-x86_64: recv ack failed
>      >
>      > qemu_transaction_begin failed
>
>     Did you use master branch?
>     It is not latest version. next branch is latest and fixed error.
>
>     git://kemari.git.sourceforge.net/gitroot/kemari/kemari <http://kemari.git.sourceforge.net/gitroot/kemari/kemari> next
>
>     Thanks,
>     Kei
>
>      >
>      > Any one working on this now?
>      >
>      >>From 827c04da6574be80d8352acd7c40b0b4524af5f4 Mon Sep 17 00:00:00 2001
>      > Date: Fri, 2 Dec 2011 18:11:40 +0530
>      > Subject: [PATCH]  [Qemu][Kemari]: Build Failure
>      >    Signed-off-by: pradeep <psuriset@linux.vnet.ibm.com <mailto:psuriset@linux.vnet.ibm.com>>
>      >    modified:   ft_trans_file.c
>      >
>      > ---
>      >  ft_trans_file.c |    2 +-
>      >  1 files changed, 1 insertions(+), 1 deletions(-)
>      >
>      > diff --git a/ft_trans_file.c b/ft_trans_file.c
>      > index 4e33034..dc36757 100644
>      > --- a/ft_trans_file.c
>      > +++ b/ft_trans_file.c
>      > @@ -174,7 +174,7 @@ static int ft_trans_send_header(QEMUFileFtTrans *s,
>      >  static int ft_trans_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
>      >  {
>      >      QEMUFileFtTrans *s = opaque;
>      > -    ssize_t ret;
>      > +    ssize_t ret = 0;
>      >
>      >      trace_ft_trans_put_buffer(size, pos);
>      >
>     --
>     To unsubscribe from this list: send the line "unsubscribe kvm" in
>     the body of a message to majordomo@vger.kernel.org <mailto:majordomo@vger.kernel.org>
>     More majordomo info at http://vger.kernel.org/majordomo-info.html
>
>


-- 
大村 圭

NTTソフトウェアイノベーションセンタ
分散処理基盤技術プロジェクト
E-mail: ohmura.kei@lab.ntt.co.jp
TEL: 0422-59-2823
FAX: 0422-59-2965

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

end of thread, other threads:[~2012-06-28 19:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20111202125100.9872.75859.sendpatchset@skywalker>
2011-12-05  2:45 ` [KVM][Kemari]: Build error fix OHMURA Kei
2012-06-27 20:34   ` Sterling Windmill
2012-06-28 19:13     ` OHMURA Kei
2012-06-27 20:36   ` [Kemari]: " Sterling Windmill

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