From: "Pavel Dovgaluk" <Pavel.Dovgaluk@ispras.ru>
To: 'Stefan Weil' <Stefan.Weil@weilnetz.de>
Cc: qemu-devel@nongnu.org
Subject: RE: [Qemu-devel] [PATCH] Correct win32 timers deleting
Date: Tue, 25 Jan 2011 10:43:16 +0300 [thread overview]
Message-ID: <002701cbbc63$8753ee80$95fbcb80$@Dovgaluk@ispras.ru> (raw)
In-Reply-To: <4D3DB2A8.1010002@weilnetz.de>
> > diff --git a/qemu-timer.c b/qemu-timer.c index 95814af..548f2e5
> 100644
> > --- a/qemu-timer.c
> > +++ b/qemu-timer.c
> > @@ -972,7 +972,10 @@ static int win32_start_timer(struct
> qemu_alarm_timer
> > *t)
>
> Your patch is broken here.
I checked the patch file, my "sent items" folder in outlook. This line is
not broken in both places.
But when I receive my patch from "qemu-devel" list, this line is broken.
Do you have any ideas about that?
>
> > - timeKillEvent(data->timerId);
> > - timeEndPeriod(data->period);
> > + if (data->timerId)
> > + timeKillEvent(data->timerId);
> > + if (data->period)
> > + timeEndPeriod(data->period);
>
> CODING_STYLE requires {} for both if statements.
Ok, inserted in new version.
>
> Please check your patch using scripts/checkpatch.pl.
>
Now this script says, that patch is ok.
Pavel Dovgaluk
next prev parent reply other threads:[~2011-01-25 7:44 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-24 14:24 [Qemu-devel] [PATCH] Correct win32 timers deleting Pavel Dovgaluk
2011-01-24 17:11 ` Stefan Weil
2011-01-25 7:43 ` Pavel Dovgaluk [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-01-25 7:23 Pavel Dovgaluk
2011-01-24 14:22 Pavel Dovgaluk
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='002701cbbc63$8753ee80$95fbcb80$@Dovgaluk@ispras.ru' \
--to=pavel.dovgaluk@ispras.ru \
--cc=Stefan.Weil@weilnetz.de \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.