Changeset 36950 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt
- Timestamp:
- May 4, 2011 7:07:23 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
r36115 r36950 1354 1354 pThis = VBOX_FLT_PT_TO_INST(pPacketType); 1355 1355 pDev = ASMAtomicUoReadPtrT(&pThis->u.s.pDev, struct net_device *); 1356 if (p This->u.s.pDev != pSkbDev)1356 if (pDev != pSkbDev) 1357 1357 { 1358 1358 Log(("vboxNetFltLinuxPacketHandler: Devices do not match, pThis may be wrong! pThis=%p\n", pThis)); … … 2510 2510 * Init the linux specific members. 2511 2511 */ 2512 pThis->u.s.pDev = NULL;2512 ASMAtomicUoWriteNullPtr(&pThis->u.s.pDev); 2513 2513 pThis->u.s.fRegistered = false; 2514 2514 pThis->u.s.fPromiscuousSet = false;
Note:
See TracChangeset
for help on using the changeset viewer.