diff options
Diffstat (limited to 'include/net/net.h')
-rw-r--r-- | include/net/net.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/net/net.h b/include/net/net.h index cb049a16a3..43d85a16eb 100644 --- a/include/net/net.h +++ b/include/net/net.h @@ -11,6 +11,11 @@ #define MAX_QUEUE_NUM 1024 +/* Maximum GSO packet size (64k) plus plenty of room for + * the ethernet and virtio_net headers + */ +#define NET_BUFSIZE (4096 + 65536) + struct MACAddr { uint8_t a[6]; }; |