Changeset 54909 in vbox
- Timestamp:
- Mar 23, 2015 12:10:59 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/solaris/VBoxNetFltBow-solaris.c
r54904 r54909 282 282 pModCtl->mod_loadflags |= MOD_NOAUTOUNLOAD; 283 283 else 284 LogRel((DEVICE_NAME ":failed to disable autounloading!\n"));284 cmn_err(CE_NOTE, ":failed to disable autounloading!\n"); 285 285 286 286 /* … … 313 313 } 314 314 else 315 LogRel((DEVICE_NAME ":failed to initialize IPRT (rc=%d)\n", rc));315 cmn_err(CE_NOTE, "failed to initialize IPRT (rc=%d)\n", rc); 316 316 317 317 memset(&g_VBoxNetFltSolarisGlobals, 0, sizeof(g_VBoxNetFltSolarisGlobals)); … … 345 345 int _info(struct modinfo *pModInfo) 346 346 { 347 Log((DEVICE_NAME ":_info\n")); 348 347 /* _info() can be called before _init() so RTR0Init() might not be called at this point. */ 349 348 int rc = mod_info(&g_VBoxNetFltSolarisModLinkage, pModInfo); 350 351 Log((DEVICE_NAME ":_info returns %d\n", rc));352 349 return rc; 353 350 }
Note:
See TracChangeset
for help on using the changeset viewer.