Changeset 33540 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt/linux
- Timestamp:
- Oct 28, 2010 9:27:05 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/HostDrivers/VBoxNetFlt/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/Makefile
r32537 r33540 183 183 184 184 # By default we use remap_pfn_range() kernel API to make kernel pages 185 # visible for userland. Unfortu ately, it leads to situation that185 # visible for userland. Unfortunately, it leads to situation that 186 186 # during debug session all structures on that page (such as PVM pointer) 187 187 # are not accessible to the debugger (see #3214). -
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
r33506 r33540 635 635 # endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 32) */ 636 636 # endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27) */ 637 /* Sync hthe queue len with our child */637 /* Sync the queue len with our child */ 638 638 pNew->q.qlen = pPriv->pChild->q.qlen; 639 639 } … … 808 808 809 809 /** 810 * Experiment where we filter traf ic from the host to the internal network810 * Experiment where we filter traffic from the host to the internal network 811 811 * before it reaches the NIC driver. 812 812 * … … 881 881 882 882 /* 883 * Do the filtering base on the defaul OUI of our virtual NICs883 * Do the filtering base on the default OUI of our virtual NICs 884 884 * 885 885 * Note! In a real solution, we would ask the switch whether the … … 1132 1132 /* 1133 1133 * We need to set checksum fields even if the packet goes to the host 1134 * directly as it may be immediately forwar ed by IP layer @bugref{5020}.1134 * directly as it may be immediately forwarded by IP layer @bugref{5020}. 1135 1135 */ 1136 1136 Assert(skb_headlen(pPkt) >= pSG->GsoCtx.cbHdrs); … … 1840 1840 1841 1841 /** 1842 * Reports the GSO capabilit es of the hardware NIC.1842 * Reports the GSO capabilities of the hardware NIC. 1843 1843 * 1844 1844 * @param pThis The net filter instance. The caller hold a … … 1889 1889 1890 1890 /** 1891 * Helper that determin s whether the host (ignoreing us) is operating the1891 * Helper that determines whether the host (ignoreing us) is operating the 1892 1892 * interface in promiscuous mode or not. 1893 1893 */ … … 2019 2019 2020 2020 /* 2021 * If the above succeeded report GSO capabilit es, if not undo and2021 * If the above succeeded report GSO capabilities, if not undo and 2022 2022 * release the device. 2023 2023 */ … … 2275 2275 * This api is a bit weird, the best reference is the code. 2276 2276 * 2277 * Also, we have a bit or race conditions wrt the maint ance of2277 * Also, we have a bit or race conditions wrt the maintenance of 2278 2278 * host the interface promiscuity for vboxNetFltPortOsIsPromiscuous. 2279 2279 */
Note:
See TracChangeset
for help on using the changeset viewer.