From: "Alex Bennée" <alex.bennee@linaro.org>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: "Marc-André Lureau" <marcandre.lureau@gmail.com>,
qemu-devel@nongnu.org, cota@braap.org, stefanha@redhat.com,
kwolf@redhat.com, mttcg@greensocs.com, peter.maydell@linaro.org,
claudio.fontana@huawei.com, nikunj@linux.vnet.ibm.com,
jan.kiszka@siemens.com, mark.burton@greensocs.com,
a.rigo@virtualopensystems.com,
"Gerd Hoffmann" <kraxel@redhat.com>,
serge.fdrv@gmail.com, bobby.prani@gmail.com, rth@twiddle.net,
fred.konrad@greensocs.com
Subject: Re: [Qemu-devel] [RFC 1/8] ui/vnc-enc-tight: add abort() for unexpected default
Date: Tue, 20 Sep 2016 15:59:55 +0100 [thread overview]
Message-ID: <87oa3ibor8.fsf@linaro.org> (raw)
In-Reply-To: <0f874df1-b508-9587-09f6-798c466c3e73@redhat.com>
Paolo Bonzini <pbonzini@redhat.com> writes:
> On 20/09/2016 10:02, Marc-André Lureau wrote:
>> Hi
>>
>> On Mon, Sep 19, 2016 at 7:58 PM Alex Bennée <alex.bennee@linaro.org
>> <mailto:alex.bennee@linaro.org>> wrote:
>>
>> When enabling the sanitizer build it will complain about control
>> reaching a non-void function. Normally the compiler should detect that
>> there is only one possible exit given a static VNC_SERVER_FB_BYTES.
>>
>> As we should never get here I added an abort() rather than a default
>> return value.
>>
>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org
>> <mailto:alex.bennee@linaro.org>>
>> ---
>> ui/vnc-enc-tight.c | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/ui/vnc-enc-tight.c b/ui/vnc-enc-tight.c
>> index 49df85e..9e4d254 100644
>> --- a/ui/vnc-enc-tight.c
>> +++ b/ui/vnc-enc-tight.c
>> @@ -710,6 +710,8 @@ static bool check_solid_tile(VncState *vs, int
>> x, int y, int w, int h,
>> switch (VNC_SERVER_FB_BYTES) {
>> case 4:
>> return check_solid_tile32(vs, x, y, w, h, color, samecolor);
>> + default:
>> + abort();
>> }
>> }
>>
>>
>>
>> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com
>> <mailto:marcandre.lureau@redhat.com>>
>>
>> Looks fine. Would it make sense to use a
>> G_STATIC_ASSERT(VNC_SERVER_FB_BYTES == 4) above instead?
>
> Or QEMU_BUILD_BUG_ON(VNC_SERVER_FB_BYTES != 4) :)
I'll do that!
>
> Paolo
>
>> --
>> Marc-André Lureau
--
Alex Bennée
next prev parent reply other threads:[~2016-09-20 15:01 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-19 15:51 [Qemu-devel] [RFC 0/8] A couple of fixes for ThreadSanitizer Alex Bennée
2016-09-19 15:51 ` [Qemu-devel] [RFC 1/8] ui/vnc-enc-tight: add abort() for unexpected default Alex Bennée
2016-09-20 8:02 ` Marc-André Lureau
2016-09-20 8:24 ` Paolo Bonzini
2016-09-20 14:59 ` Alex Bennée [this message]
2016-09-19 15:51 ` [Qemu-devel] [RFC 2/8] tcg/optimize: move default return out of if statement Alex Bennée
2016-09-20 8:02 ` Marc-André Lureau
2016-09-19 15:51 ` [Qemu-devel] [RFC 3/8] new: blacklist.tsan Alex Bennée
2016-09-20 8:03 ` Marc-André Lureau
2016-09-19 15:51 ` [Qemu-devel] [RFC 4/8] seqlock: use atomic writes for the sequence Alex Bennée
2016-09-19 15:51 ` [Qemu-devel] [RFC 5/8] qom/object: update class cache atomically Alex Bennée
2016-09-20 8:36 ` Marc-André Lureau
2016-09-20 14:59 ` Alex Bennée
2016-09-20 15:04 ` Paolo Bonzini
2016-09-19 15:51 ` [Qemu-devel] [RFC 6/8] cpu: atomically modify cpu->exit_request Alex Bennée
2016-09-19 15:51 ` [Qemu-devel] [RFC 7/8] util/qht: atomically set b->hashes Alex Bennée
2016-09-19 18:06 ` Emilio G. Cota
2016-09-19 18:37 ` Paolo Bonzini
2016-09-19 19:06 ` Emilio G. Cota
2016-09-20 7:39 ` Paolo Bonzini
2016-09-22 9:51 ` Alex Bennée
2016-09-19 15:51 ` [Qemu-devel] [RFC 8/8] .travis.yml: add gcc sanitizer build Alex Bennée
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=87oa3ibor8.fsf@linaro.org \
--to=alex.bennee@linaro.org \
--cc=a.rigo@virtualopensystems.com \
--cc=bobby.prani@gmail.com \
--cc=claudio.fontana@huawei.com \
--cc=cota@braap.org \
--cc=fred.konrad@greensocs.com \
--cc=jan.kiszka@siemens.com \
--cc=kraxel@redhat.com \
--cc=kwolf@redhat.com \
--cc=marcandre.lureau@gmail.com \
--cc=mark.burton@greensocs.com \
--cc=mttcg@greensocs.com \
--cc=nikunj@linux.vnet.ibm.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
--cc=serge.fdrv@gmail.com \
--cc=stefanha@redhat.com \
/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.