Last active
November 18, 2022 10:35
-
-
Save bartku/50140a9022ea287361aed88b16666c43 to your computer and use it in GitHub Desktop.
vbox7 rhel9 netif_rx patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.virtualbox.org/download/testcase/VirtualBox-7.0-7.0.3_154539_el9-1.x86_64.rpm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- /usr/share/virtualbox/src/vboxhost/vboxnetflt/linux/VBoxNetFlt-linux.c 2022-11-18 11:24:49.415496734 +0100 | |
+++ /root/VBoxNetFlt-linux.c 2022-11-18 11:22:53.256560555 +0100 | |
@@ -2318,7 +2318,7 @@ | |
vboxNetFltDumpPacket(pSG, true, "host", (fDst & INTNETTRUNKDIR_WIRE) ? 0 : 1); | |
Log6(("vboxNetFltPortOsXmit: pBuf->cb dump:\n%.*Rhxd\n", sizeof(pBuf->cb), pBuf->cb)); | |
Log6(("vboxNetFltPortOsXmit: netif_rx_ni(%p)\n", pBuf)); | |
-#if RTLNX_VER_MIN(5,18,0) || RTLNX_RHEL_MIN(9,1) | |
+#if RTLNX_VER_MIN(5,18,0) || RTLNX_RHEL_MIN(9,2) | |
local_bh_disable(); | |
err = netif_rx(pBuf); | |
local_bh_enable(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment