Changeset 19147 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt/linux
- Timestamp:
- Apr 23, 2009 3:09:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
r19135 r19147 636 636 #endif 637 637 638 for (pSegment = VBOX_SKB_GSO_SEGMENT(pBuf); pSegment; pSegment = pNext) 638 pSegment = VBOX_SKB_GSO_SEGMENT(pBuf); 639 if (IS_ERR(pSegment)) 640 { 641 dev_kfree_skb(pBuf); 642 LogRel(("VBoxNetFlt: Failed to segment a packet (%d).\n", PRT_ERR(pBuf))); 643 return; 644 } 645 for (; pSegment; pSegment = pNext) 639 646 { 640 647 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 18)
Note:
See TracChangeset
for help on using the changeset viewer.