mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
- Adapt and regenerate patches - Reduce differences in patch-src_VBox_Devices_PC_vbox-cpuhotplug.dsl [1] Patch based on one provided by Mario Lobo <lobo@bsd.com.br>. Many thanks to people who provided ideas and suggetions in the PR and review. PR: 244212 Submitted by: Nikita Stepanov <nikitastepan0v@bk.ru> Reviewed by: kevans [1] Tested by: lwshu Approved by: ports-secteam (joneum) MFH: 2020Q3 Security: 1e7b316b-c6a8-11ea-a7d5-001999f8d30b Differential Revision: https://reviews.freebsd.org/D25496
12 lines
602 B
C
12 lines
602 B
C
--- src/VBox/Devices/Network/slirp/bsd/sys/mbuf.h.orig 2020-05-13 19:42:23 UTC
|
|
+++ src/VBox/Devices/Network/slirp/bsd/sys/mbuf.h
|
|
@@ -245,6 +245,9 @@ struct mbuf {
|
|
#define M_FRAG 0x00000800 /* packet is a fragment of a larger packet */
|
|
#define M_FIRSTFRAG 0x00001000 /* packet is first fragment */
|
|
#define M_LASTFRAG 0x00002000 /* packet is last fragment */
|
|
+#ifdef M_SKIP_FIREWALL
|
|
+#undef M_SKIP_FIREWALL
|
|
+#endif
|
|
#define M_SKIP_FIREWALL 0x00004000 /* skip firewall processing */
|
|
#define M_FREELIST 0x00008000 /* mbuf is on the free list */
|
|
#define M_VLANTAG 0x00010000 /* ether_vtag is valid */
|