Ticket #11109: netflt_conntrack_leak.patch
File netflt_conntrack_leak.patch, 706 bytes (added by , 12 years ago) |
---|
-
vboxnetflt/linux/VBoxNetFlt-linux.c
old new 786 786 * another copy going to the wire. 787 787 */ 788 788 Log2(("vboxNetFltLinuxPacketHandler: dropped loopback packet (cb=%u)\n", pBuf->len)); 789 dev_kfree_skb(pBuf); /* We must 'consume' all packets we get (@bugref{6539})! */ 789 790 return 0; 790 791 } 791 792 … … 794 795 if (pDev != pSkbDev) 795 796 { 796 797 Log(("vboxNetFltLinuxPacketHandler: Devices do not match, pThis may be wrong! pThis=%p\n", pThis)); 798 dev_kfree_skb(pBuf); 797 799 return 0; 798 800 } 799 801