From: Quan Xu <quan.xu0@gmail.com>
To: "Marc-André Lureau" <marcandre.lureau@gmail.com>,
田殿臣 <dianchen.tdc@gmail.com>
Cc: QEMU <qemu-devel@nongnu.org>, icymemo@gmail.com
Subject: Re: [Qemu-devel] [PATCH] input: free InputEvent when it can't be inserted into a full kdb queue
Date: Fri, 2 Mar 2018 22:05:39 +0800 [thread overview]
Message-ID: <08491061-f3fc-5a68-8ab5-5a2f13dcfebd@gmail.com> (raw)
In-Reply-To: <CAJ+F1C+6Gt-STfZhsRsr-q9YeMOP5jyRiQ73OuhO9Uz+QE3fGQ@mail.gmail.com>
On 2017/12/06 17:46, Marc-André Lureau wrote:
> Hi
>
> On Wed, Dec 6, 2017 at 3:29 AM, 田殿臣 <dianchen.tdc@gmail.com> wrote:
>> From e8c03f405c2112428e79bb82064c7b7743d0cc86 Mon Sep 17 00:00:00 2001
>> From: Tian Dianchen <dianchen.tdc@gmail.com>
>> Date: Tue, 5 Dec 2017 14:03:53 +0800
>> Subject: [PATCH] input: free InputEvent when it can't be inserted into a
>> full
>> kdb queue
>>
>> When the kdb queue is full, the evt can't be placed in it, so it should
>> be released to free the memory.
>>
>> Impact: Without this limit vnc clients can exhaust host memory by keep
>> sending keyboard events when kdb queue is full.
> You may add "Leak introduced in commit fa18f36a461984eae50ab957e47ec78dae3c14fc"
>
>> Reviewed-by: Zhang Chao <icymemo@gmail.com>
>> Reviewed-by: Quan Xu <quan.xu0@gmail.com>
>> Signed-off-by: Tian Dianchen <dianchen.tdc@gmail.com>
> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
>
Lureau, thanks for your review.. this patch seems still not in master tree.. could you help me commit it?
thanks,
Quan
>> ---
>> ui/input.c | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/ui/input.c b/ui/input.c
>> index 3e2d324..e5b78aa 100644
>> --- a/ui/input.c
>> +++ b/ui/input.c
>> @@ -421,6 +421,8 @@ void qemu_input_event_send_key(QemuConsole *src,
>> KeyValue *key, bool down)
>> } else if (queue_count < queue_limit) {
>> qemu_input_queue_event(&kbd_queue, src, evt);
>> qemu_input_queue_sync(&kbd_queue);
>> + } else {
>> + qapi_free_InputEvent(evt);
>> }
>> }
>>
>> --
>> 1.8.3.1
>
>
prev parent reply other threads:[~2018-03-02 14:05 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-06 2:29 [Qemu-devel] [PATCH] input: free InputEvent when it can't be inserted into a full kdb queue 田殿臣
2017-12-06 9:46 ` Marc-André Lureau
2017-12-07 2:38 ` Tian Dianchen
2018-03-02 14:05 ` Quan Xu [this message]
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=08491061-f3fc-5a68-8ab5-5a2f13dcfebd@gmail.com \
--to=quan.xu0@gmail.com \
--cc=dianchen.tdc@gmail.com \
--cc=icymemo@gmail.com \
--cc=marcandre.lureau@gmail.com \
--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 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).