[PATCH V3] cxl: Fix timebase synchronization status on P9
Vaibhav Jain
vaibhav at linux.vnet.ibm.com
Mon Feb 19 17:10:42 AEDT 2018
Hi Christophe,
Mostly ok with this patch. Some very minor review comments:
Christophe Lombard <clombard at linux.vnet.ibm.com> writes:
> --- a/drivers/misc/cxl/sysfs.c
> +++ b/drivers/misc/cxl/sysfs.c
> @@ -62,6 +62,16 @@ static ssize_t psl_timebase_synced_show(struct device *device,
> char *buf)
> {
> struct cxl *adapter = to_cxl_adapter(device);
> + u64 psl_tb;
> + int delta;
> +
> + psl_tb = adapter->native->sl_ops->timebase_read(adapter);
> + delta = mftb() - psl_tb;
> + if (delta < 0)
> + delta = -delta;
Can just use abs().
> +
> + /* CORE TB and PSL TB difference <= 16usecs ? */
> + adapter->psl_timebase_synced = (tb_to_ns(delta) < 16000) ? true : false;
Can be re-written as
'adapter->psl_timebase_synced = (tb_to_ns(abs(delta)) < 16000);'
>
> return scnprintf(buf, PAGE_SIZE, "%i\n",
> adapter->psl_timebase_synced);
Might be a good idea to debug print/print_once the delta.
--
Vaibhav Jain <vaibhav at linux.vnet.ibm.com>
Linux Technology Center, IBM India Pvt. Ltd.
More information about the Linuxppc-dev
mailing list