On Wed, Apr 04, 2018 at 03:50:52PM +0000, Pawel Wieczorkiewicz wrote:
> From: Paul Semel <phen...@amazon.de>

Missing commit log.

> Signed-off-by: Paul Semel <phen...@amazon.de>
> 
> cr https://code.amazon.com/reviews/CR-786226
> ---
>  common/time.c | 14 ++++++++++++++
>  1 file changed, 14 insertions(+)
> 
> diff --git a/common/time.c b/common/time.c
> index db28d78..6aa1648 100644
> --- a/common/time.c
> +++ b/common/time.c
> @@ -124,6 +124,20 @@ static inline void nspin_sleep(uint64_t t)
>          curr = since_boot_time();
>  }
>  
> +#if defined(__i386__)
> +static inline void spin_sleep(uint32_t t)
> +#else
> +static inline void spin_sleep(uint64_t t)
> +#endif
> +{
> +#if defined(__i386__)
> +    uint32_t nsec = t * 1000000000;
> +#else
> +    uint64_t nsec = t * 1000000000ul;

This value should be in a define with a proper name.

Thanks, Roger.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

Reply via email to