Changeset 26710 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Feb 23, 2010 2:26:33 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r25484 r26710 192 192 int _init(void) 193 193 { 194 LogFlow ((DEVICE_NAME ":_init\n"));194 LogFlowFunc((DEVICE_NAME ":_init\n")); 195 195 196 196 /* … … 256 256 int _fini(void) 257 257 { 258 LogFlow ((DEVICE_NAME ":_fini\n"));258 LogFlowFunc((DEVICE_NAME ":_fini\n")); 259 259 260 260 /* … … 282 282 int _info(struct modinfo *pModInfo) 283 283 { 284 LogFlow ((DEVICE_NAME ":_info\n"));284 LogFlowFunc((DEVICE_NAME ":_info\n")); 285 285 int e = mod_info(&g_VBoxDrvSolarisModLinkage, pModInfo); 286 286 return e; … … 298 298 static int VBoxDrvSolarisAttach(dev_info_t *pDip, ddi_attach_cmd_t enmCmd) 299 299 { 300 LogFlow ((DEVICE_NAME ":VBoxDrvSolarisAttach\n"));300 LogFlowFunc((DEVICE_NAME ":VBoxDrvSolarisAttach\n")); 301 301 302 302 switch (enmCmd) … … 380 380 static int VBoxDrvSolarisDetach(dev_info_t *pDip, ddi_detach_cmd_t enmCmd) 381 381 { 382 LogFlow ((DEVICE_NAME ":VBoxDrvSolarisDetach\n"));382 LogFlowFunc((DEVICE_NAME ":VBoxDrvSolarisDetach\n")); 383 383 switch (enmCmd) 384 384 { … … 426 426 int rc; 427 427 PSUPDRVSESSION pSession; 428 LogFlow ((DEVICE_NAME ":VBoxDrvSolarisOpen: pDev=%p:%#x\n", pDev, *pDev));428 LogFlowFunc((DEVICE_NAME ":VBoxDrvSolarisOpen: pDev=%p:%#x\n", pDev, *pDev)); 429 429 430 430 #ifndef USE_SESSION_HASH … … 520 520 static int VBoxDrvSolarisClose(dev_t Dev, int flag, int otyp, cred_t *cred) 521 521 { 522 LogFlow ((DEVICE_NAME ":VBoxDrvSolarisClose: Dev=%#x\n", Dev));522 LogFlowFunc((DEVICE_NAME ":VBoxDrvSolarisClose: Dev=%#x\n", Dev)); 523 523 524 524 #ifndef USE_SESSION_HASH … … 601 601 static int VBoxDrvSolarisRead(dev_t Dev, struct uio *pUio, cred_t *pCred) 602 602 { 603 LogFlow ((DEVICE_NAME ":VBoxDrvSolarisRead"));603 LogFlowFunc((DEVICE_NAME ":VBoxDrvSolarisRead")); 604 604 return 0; 605 605 } … … 608 608 static int VBoxDrvSolarisWrite(dev_t Dev, struct uio *pUio, cred_t *pCred) 609 609 { 610 LogFlow ((DEVICE_NAME ":VBoxDrvSolarisWrite"));610 LogFlowFunc((DEVICE_NAME ":VBoxDrvSolarisWrite")); 611 611 return 0; 612 612 }
Note:
See TracChangeset
for help on using the changeset viewer.