Re: [RFC PATCH] printk: Change timestamp to triplet as mono, boot and real
From: Randy Dunlap
Date: Tue Aug 11 2020 - 00:57:00 EST
On 8/10/20 9:40 PM, Orson Zhai wrote:
> +/*
> + * struct timestanps - Simultaneous mono/boot/real timestamps
typo: timestamps
> + * @mono: Monotonic timestamp
> + * @boot: Boottime timestamp
> + * @real: Realtime timestamp
> + */
> +struct timestamps {
> + u64 mono;
> + u64 boot;
> + u64 real;
> +};
--
~Randy