Changeset 28507 in vbox
- Timestamp:
- Apr 20, 2010 8:43:15 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceStats.cpp
r28506 r28507 283 283 rc = VbglR3StatReport(&req); 284 284 if (RT_SUCCESS(rc)) 285 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: new statistics reported successfully!\n");285 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: new statistics (CPU %u) reported successfully!\n", i); 286 286 else 287 287 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: DeviceIoControl (stats report) failed with %d\n", GetLastError()); … … 422 422 rc = VbglR3StatReport(&req); 423 423 if (RT_SUCCESS(rc)) 424 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: new statistics reported successfully!\n");424 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: new statistics (CPU %u) reported successfully!\n", u32CpuId); 425 425 else 426 426 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: stats report failed with rc=%Rrc\n", rc); … … 532 532 kstat_t *pStatNode = NULL; 533 533 uint32_t cCPUs = 0; 534 bool fCpuInfoAvail = false; 534 535 for (pStatNode = pStatKern->kc_chain; pStatNode != NULL; pStatNode = pStatNode->ks_next) 535 536 { … … 562 563 | VBOX_GUEST_STAT_CPU_LOAD_KERNEL \ 563 564 | VBOX_GUEST_STAT_CPU_LOAD_USER; 564 565 fCpuInfoAvail = true; 566 567 rc = VbglR3StatReport(&req); 568 if (RT_SUCCESS(rc)) 569 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: new statistics (CPU %u) reported successfully!\n", cCpus); 570 else 571 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: stats report failed with rc=%Rrc\n", rc); 565 572 cCPUs++; 566 573 } … … 570 577 * Report whatever statistics were collected. 571 578 */ 572 rc = VbglR3StatReport(&req); 573 if (RT_SUCCESS(rc)) 574 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: new statistics reported successfully!\n"); 575 else 576 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: stats report failed with rc=%Rrc\n", rc); 579 if (!fCpuInfoAvail) 580 { 581 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: CPU info not available!\n"); 582 rc = VbglR3StatReport(&req); 583 if (RT_SUCCESS(rc)) 584 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: new statistics reported successfully!\n"); 585 else 586 VBoxServiceVerbose(3, "VBoxStatsReportStatistics: stats report failed with rc=%Rrc\n", rc); 587 } 577 588 578 589 kstat_close(pStatKern);
Note:
See TracChangeset
for help on using the changeset viewer.