Changeset 5138 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Oct 2, 2007 11:28:26 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 25008
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r4985 r5138 190 190 # define ONE_MSEC_IN_JIFFIES ((HZ + 999) / 1000) 191 191 # error "HZ is not a multiple of 1000, the GIP stuff won't work right!" 192 #endif 193 194 /** @def TICK_NSEC 195 * The time between ticks in nsec */ 196 #ifndef TICK_NSEC 197 # define TICK_NSEC (1000000UL / HZ) 192 198 #endif 193 199 … … 922 928 pGip = (PSUPGLOBALINFOPAGE)page_address(pPage); 923 929 pDevExt->ulLastJiffies = jiffies; 924 #ifdef TICK_NSEC925 930 pDevExt->u64LastMonotime = (uint64_t)pDevExt->ulLastJiffies * TICK_NSEC; 926 931 dprintf(("VBoxDrvInitGIP: TICK_NSEC=%ld HZ=%d jiffies=%ld now=%lld\n", 927 932 TICK_NSEC, HZ, pDevExt->ulLastJiffies, pDevExt->u64LastMonotime)); 928 #else929 pDevExt->u64LastMonotime = (uint64_t)pDevExt->ulLastJiffies * (1000000 / HZ);930 dprintf(("VBoxDrvInitGIP: TICK_NSEC=%d HZ=%d jiffies=%ld now=%lld\n",931 (int)(1000000 / HZ), HZ, pDevExt->ulLastJiffies, pDevExt->u64LastMonotime));932 #endif933 933 supdrvGipInit(pDevExt, pGip, HCPhys, pDevExt->u64LastMonotime, 934 934 HZ <= 1000 ? HZ : 1000); … … 1014 1014 * @param ulUser The device extension pointer. 1015 1015 */ 1016 static void 1016 static void VBoxDrvLinuxGipTimer(unsigned long ulUser) 1017 1017 { 1018 1018 PSUPDRVDEVEXT pDevExt; … … 1035 1035 ulDiff = ulNow - pDevExt->aCPUs[iCPU].ulLastJiffies; 1036 1036 pDevExt->aCPUs[iCPU].ulLastJiffies = ulNow; 1037 #ifdef TICK_NSEC1038 1037 u64Monotime = pDevExt->aCPUs[iCPU].u64LastMonotime + ulDiff * TICK_NSEC; 1039 #else1040 u64Monotime = pDevExt->aCPUs[iCPU].u64LastMonotime + ulDiff * (1000000 / HZ);1041 #endif1042 1038 pDevExt->aCPUs[iCPU].u64LastMonotime = u64Monotime; 1043 1039 } … … 1047 1043 ulDiff = ulNow - pDevExt->ulLastJiffies; 1048 1044 pDevExt->ulLastJiffies = ulNow; 1049 #ifdef TICK_NSEC1050 1045 u64Monotime = pDevExt->u64LastMonotime + ulDiff * TICK_NSEC; 1051 #else1052 u64Monotime = pDevExt->u64LastMonotime + ulDiff * (1000000 / HZ);1053 #endif1054 1046 pDevExt->u64LastMonotime = u64Monotime; 1055 1047 } … … 1091 1083 unsigned long ulDiff = ulNow - pDevExt->aCPUs[iCPU].ulLastJiffies; 1092 1084 pDevExt->aCPUs[iCPU].ulLastJiffies = ulNow; 1093 #ifdef TICK_NSEC1094 1085 u64Monotime = pDevExt->aCPUs[iCPU].u64LastMonotime + ulDiff * TICK_NSEC; 1095 #else1096 u64Monotime = pDevExt->aCPUs[iCPU].u64LastMonotime + ulDiff * (1000000 / HZ);1097 #endif1098 1086 pDevExt->aCPUs[iCPU].u64LastMonotime = u64Monotime; 1099 1087 if (RT_LIKELY(pGip))
Note:
See TracChangeset
for help on using the changeset viewer.