All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Make SLIRP Ethernet packets size to 64 bytes minimum
@ 2011-06-27 12:41 Fabien Chouteau
  2011-06-27 13:50 ` Stefan Hajnoczi
  0 siblings, 1 reply; 11+ messages in thread
From: Fabien Chouteau @ 2011-06-27 12:41 UTC (permalink / raw)
  To: qemu-devel


Signed-off-by: Fabien Chouteau <chouteau@adacore.com>
---
 slirp/slirp.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/slirp/slirp.c b/slirp/slirp.c
index 1593be1..be30501 100644
--- a/slirp/slirp.c
+++ b/slirp/slirp.c
@@ -697,7 +697,7 @@ void if_encap(Slirp *slirp, const uint8_t *ip_data, int ip_data_len)
         return;
     
     if (!memcmp(slirp->client_ethaddr, zero_ethaddr, ETH_ALEN)) {
-        uint8_t arp_req[ETH_HLEN + sizeof(struct arphdr)];
+        uint8_t arp_req[max(ETH_HLEN + sizeof(struct arphdr), 64)];
         struct ethhdr *reh = (struct ethhdr *)arp_req;
         struct arphdr *rah = (struct arphdr *)(arp_req + ETH_HLEN);
         const struct ip *iph = (const struct ip *)ip_data;
@@ -734,7 +734,7 @@ void if_encap(Slirp *slirp, const uint8_t *ip_data, int ip_data_len)
         memcpy(&eh->h_source[2], &slirp->vhost_addr, 4);
         eh->h_proto = htons(ETH_P_IP);
         memcpy(buf + sizeof(struct ethhdr), ip_data, ip_data_len);
-        slirp_output(slirp->opaque, buf, ip_data_len + ETH_HLEN);
+        slirp_output(slirp->opaque, buf, max(ip_data_len + ETH_HLEN, 64));
     }
 }
 
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2011-08-04 23:04 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-27 12:41 [Qemu-devel] [PATCH] Make SLIRP Ethernet packets size to 64 bytes minimum Fabien Chouteau
2011-06-27 13:50 ` Stefan Hajnoczi
2011-06-27 14:23   ` Fabien Chouteau
2011-06-27 15:39     ` Stefan Hajnoczi
2011-06-27 16:12       ` Fabien Chouteau
2011-06-28  8:34         ` Stefan Hajnoczi
2011-06-28  9:08           ` [Qemu-devel] [PATCH] Make SLIRP Ethernet packets size to 64 bytes minimuma Fabien Chouteau
2011-06-28 13:15             ` Stefan Hajnoczi
2011-06-30  8:38               ` Fabien Chouteau
2011-07-05 14:24                 ` Fabien Chouteau
2011-08-04 23:04           ` [Qemu-devel] [PATCH] Make SLIRP Ethernet packets size to 64 bytes minimum Edgar E. Iglesias

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.