VirtualBox

Changeset 5138 in vbox for trunk/src/VBox/HostDrivers


Ignore:
Timestamp:
Oct 2, 2007 11:28:26 AM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
25008
Message:

vboxdrv: TICK_NSEC as macro

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c

    r4985 r5138  
    190190# define ONE_MSEC_IN_JIFFIES       ((HZ + 999) / 1000)
    191191# 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)
    192198#endif
    193199
     
    922928    pGip = (PSUPGLOBALINFOPAGE)page_address(pPage);
    923929    pDevExt->ulLastJiffies  = jiffies;
    924 #ifdef TICK_NSEC
    925930    pDevExt->u64LastMonotime = (uint64_t)pDevExt->ulLastJiffies * TICK_NSEC;
    926931    dprintf(("VBoxDrvInitGIP: TICK_NSEC=%ld HZ=%d jiffies=%ld now=%lld\n",
    927932             TICK_NSEC, HZ, pDevExt->ulLastJiffies, pDevExt->u64LastMonotime));
    928 #else
    929     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 #endif
    933933    supdrvGipInit(pDevExt, pGip, HCPhys, pDevExt->u64LastMonotime,
    934934                  HZ <= 1000 ? HZ : 1000);
     
    10141014 * @param   ulUser  The device extension pointer.
    10151015 */
    1016 static void     VBoxDrvLinuxGipTimer(unsigned long ulUser)
     1016static void VBoxDrvLinuxGipTimer(unsigned long ulUser)
    10171017{
    10181018    PSUPDRVDEVEXT       pDevExt;
     
    10351035        ulDiff = ulNow - pDevExt->aCPUs[iCPU].ulLastJiffies;
    10361036        pDevExt->aCPUs[iCPU].ulLastJiffies = ulNow;
    1037 #ifdef TICK_NSEC
    10381037        u64Monotime = pDevExt->aCPUs[iCPU].u64LastMonotime + ulDiff * TICK_NSEC;
    1039 #else
    1040         u64Monotime = pDevExt->aCPUs[iCPU].u64LastMonotime + ulDiff * (1000000 / HZ);
    1041 #endif
    10421038        pDevExt->aCPUs[iCPU].u64LastMonotime = u64Monotime;
    10431039    }
     
    10471043        ulDiff = ulNow - pDevExt->ulLastJiffies;
    10481044        pDevExt->ulLastJiffies = ulNow;
    1049 #ifdef TICK_NSEC
    10501045        u64Monotime = pDevExt->u64LastMonotime + ulDiff * TICK_NSEC;
    1051 #else
    1052         u64Monotime = pDevExt->u64LastMonotime + ulDiff * (1000000 / HZ);
    1053 #endif
    10541046        pDevExt->u64LastMonotime = u64Monotime;
    10551047    }
     
    10911083            unsigned long   ulDiff = ulNow - pDevExt->aCPUs[iCPU].ulLastJiffies;
    10921084            pDevExt->aCPUs[iCPU].ulLastJiffies = ulNow;
    1093 #ifdef TICK_NSEC
    10941085            u64Monotime = pDevExt->aCPUs[iCPU].u64LastMonotime + ulDiff * TICK_NSEC;
    1095 #else
    1096             u64Monotime = pDevExt->aCPUs[iCPU].u64LastMonotime + ulDiff * (1000000 / HZ);
    1097 #endif
    10981086            pDevExt->aCPUs[iCPU].u64LastMonotime = u64Monotime;
    10991087            if (RT_LIKELY(pGip))
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette