Re: [PATCH v3 2/2] net: tulip: add .can_recieve routine

2020-03-19 Thread P J P
Hello Jason, +-- On Wed, 18 Mar 2020, Jason Wang wrote --+ | Right, so need to make sure qemu_flush_ququed_packets() was called when | rx_frame_len is zero. Sent patch v4, with this call. Please see when you've time. Thank you. -- Prasad J Pandit / Red Hat Product Security Team 8685 545E B5

Re: [PATCH v3 2/2] net: tulip: add .can_recieve routine

2020-03-17 Thread Jason Wang
On 2020/3/17 下午6:49, P J P wrote: +-- On Tue, 17 Mar 2020, Jason Wang wrote --+ | > +-- On Fri, 6 Mar 2020, Stefan Hajnoczi wrote --+ | > | > +static int | > | > +tulip_can_receive(NetClientState *nc) | > | > +{ | > | > +TULIPState *s = qemu_get_nic_opaque(nc); | > | > + | > | > +if (s-

Re: [PATCH v3 2/2] net: tulip: add .can_recieve routine

2020-03-17 Thread P J P
+-- On Tue, 17 Mar 2020, Jason Wang wrote --+ | > +-- On Fri, 6 Mar 2020, Stefan Hajnoczi wrote --+ | > | > +static int | > | > +tulip_can_receive(NetClientState *nc) | > | > +{ | > | > +TULIPState *s = qemu_get_nic_opaque(nc); | > | > + | > | > +if (s->rx_frame_len || tulip_rx_stopped(s))

Re: [PATCH v3 2/2] net: tulip: add .can_recieve routine

2020-03-16 Thread Jason Wang
On 2020/3/17 上午2:01, P J P wrote: Hello Stefan, Jason, +-- On Fri, 6 Mar 2020, Stefan Hajnoczi wrote --+ | > +static int | > +tulip_can_receive(NetClientState *nc) | > +{ | > +TULIPState *s = qemu_get_nic_opaque(nc); | > + | > +if (s->rx_frame_len || tulip_rx_stopped(s)) { | > +

Re: [PATCH v3 2/2] net: tulip: add .can_recieve routine

2020-03-16 Thread P J P
Hello Stefan, Jason, +-- On Fri, 6 Mar 2020, Stefan Hajnoczi wrote --+ | > +static int | > +tulip_can_receive(NetClientState *nc) | > +{ | > +TULIPState *s = qemu_get_nic_opaque(nc); | > + | > +if (s->rx_frame_len || tulip_rx_stopped(s)) { | > +return false; | > +} | > + | >

Re: [PATCH v3 2/2] net: tulip: add .can_recieve routine

2020-03-06 Thread Stefan Hajnoczi
On Tue, Mar 03, 2020 at 04:17:24PM +0530, P J P wrote: > diff --git a/hw/net/tulip.c b/hw/net/tulip.c > index fbe40095da..757f12c710 100644 > --- a/hw/net/tulip.c > +++ b/hw/net/tulip.c > @@ -229,6 +229,18 @@ static bool tulip_filter_address(TULIPState *s, const > uint8_t *addr) > return ret;

[PATCH v3 2/2] net: tulip: add .can_recieve routine

2020-03-03 Thread P J P
From: Prasad J Pandit Define .can_receive routine to do sanity checks before receiving packet data. Signed-off-by: Prasad J Pandit --- hw/net/tulip.c | 15 ++- 1 file changed, 14 insertions(+), 1 deletion(-) Update v3: define .can_receive routine -> https://lists.gnu.org/archive