From: Jason Wang <jasowang@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>, P J P <ppandit@redhat.com>,
Qemu Developers <qemu-devel@nongnu.org>
Cc: Li Qiang <liqiang6-s@360.cn>, Prasad J Pandit <pjp@fedoraproject.org>
Subject: Re: [Qemu-devel] [PATCH v2] net: imx: limit buffer descriptor count
Date: Fri, 23 Sep 2016 14:08:09 +0800 [thread overview]
Message-ID: <37065598-2277-5ea4-f75b-d88dcbf8cff4@redhat.com> (raw)
In-Reply-To: <65a02429-9c7b-5c9d-c3d7-0cda13789539@redhat.com>
On 2016年09月23日 13:17, Jason Wang wrote:
>
>
> On 2016年09月22日 18:32, Paolo Bonzini wrote:
>>
>> On 22/09/2016 12:31, P J P wrote:
>>> From: Prasad J Pandit <pjp@fedoraproject.org>
>>>
>>> i.MX Fast Ethernet Controller uses buffer descriptors to manage
>>> data flow to/fro receive & transmit queues. While transmitting
>>> packets, it could continue to read buffer descriptors if a buffer
>>> descriptor has length of zero and has crafted values in bd.flags.
>>> Set an upper limit to number of buffer descriptors.
>>>
>>> Reported-by: Li Qiang <liqiang6-s@360.cn>
>>> Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org>
>>> ---
>>> hw/net/imx_fec.c | 6 ++++--
>>> 1 file changed, 4 insertions(+), 2 deletions(-)
>>>
>>> Update per
>>> ->
>>> https://lists.gnu.org/archive/html/qemu-devel/2016-09/msg05284.html
>>>
>>> diff --git a/hw/net/imx_fec.c b/hw/net/imx_fec.c
>>> index e60e338..547fa99 100644
>>> --- a/hw/net/imx_fec.c
>>> +++ b/hw/net/imx_fec.c
>>> @@ -94,6 +94,8 @@ static const VMStateDescription vmstate_imx_fec = {
>>> #define PHY_INT_PARFAULT (1 << 2)
>>> #define PHY_INT_AUTONEG_PAGE (1 << 1)
>>> +#define IMX_MAX_DESC 1024
>>> +
>>> static void imx_fec_update(IMXFECState *s);
>>> /*
>>> @@ -264,12 +266,12 @@ static void imx_fec_update(IMXFECState *s)
>>> static void imx_fec_do_tx(IMXFECState *s)
>>> {
>>> - int frame_size = 0;
>>> + int frame_size = 0, descnt = 0;
>>> uint8_t frame[FEC_MAX_FRAME_SIZE];
>>> uint8_t *ptr = frame;
>>> uint32_t addr = s->tx_descriptor;
>>> - while (1) {
>>> + while (descnt++ < IMX_MAX_DESC) {
>>> IMXFECBufDesc bd;
>>> int len;
>>>
>> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
>
> Applied, thanks.
>
Actually the patch does not apply cleanly. Please fix and repost.
Thanks
next prev parent reply other threads:[~2016-09-23 6:08 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-22 10:31 [Qemu-devel] [PATCH v2] net: imx: limit buffer descriptor count P J P
2016-09-22 10:32 ` Paolo Bonzini
2016-09-23 5:17 ` Jason Wang
2016-09-23 6:08 ` Jason Wang [this message]
2016-09-26 10:51 ` P J P
2017-01-26 17:48 ` P J P
2017-02-02 9:51 ` P J P
2017-02-02 11:05 ` P J P
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=37065598-2277-5ea4-f75b-d88dcbf8cff4@redhat.com \
--to=jasowang@redhat.com \
--cc=liqiang6-s@360.cn \
--cc=pbonzini@redhat.com \
--cc=pjp@fedoraproject.org \
--cc=ppandit@redhat.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).