qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Philippe Mathieu-Daudé
Subject: Re: [PATCH v4 2/3] net: tulip: add .can_recieve routine
Date: Thu, 19 Mar 2020 11:24:09 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.5.0

Typo "can_recieve" -> "can_receive" in subject.

On 3/19/20 10:52 AM, P J P wrote:
From: Prasad J Pandit <address@hidden>

Define .can_receive routine to do sanity checks before receiving
packet data.

Signed-off-by: Prasad J Pandit <address@hidden>
---
  hw/net/tulip.c | 15 ++++++++++++++-
  1 file changed, 14 insertions(+), 1 deletion(-)

Update v3: define .can_receive routine
   -> https://lists.gnu.org/archive/html/qemu-devel/2020-02/msg06275.html

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;
  }
+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;
+    }
+
+    return true;
+}
+
  static ssize_t tulip_receive(TULIPState *s, const uint8_t *buf, size_t size)
  {
      struct tulip_descriptor desc;
@@ -236,7 +248,7 @@ static ssize_t tulip_receive(TULIPState *s, const uint8_t 
*buf, size_t size)
      trace_tulip_receive(buf, size);
if (size < 14 || size > sizeof(s->rx_frame) - 4
-        || s->rx_frame_len || tulip_rx_stopped(s)) {
+        || !tulip_can_receive(s->nic->ncs)) {
          return 0;
      }
@@ -288,6 +300,7 @@ static NetClientInfo net_tulip_info = {
      .type = NET_CLIENT_DRIVER_NIC,
      .size = sizeof(NICState),
      .receive = tulip_receive_nc,
+    .can_receive = tulip_can_receive,
  };
static const char *tulip_reg_name(const hwaddr addr)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]