Re: [dpdk-dev] [PATCH v2] bus/fslmc: use PRIu64 instead of llX in format specifier

2018-04-13 Thread Shreyansh Jain
On Friday 13 April 2018 04:25 PM, Gowrishankar wrote: From: Gowrishankar Muthukrishnan Instead of llX, use C99 standard "PRIu64" in format specifier. Former one breaks compile in ppc64le. Fixes: c2c167fdb3 ("bus/fslmc: support memory event callbacks for VFIO") Signed-off-by: Gowrishankar Muth

[dpdk-dev] [PATCH v2] bus/fslmc: use PRIu64 instead of llX in format specifier

2018-04-13 Thread Gowrishankar
From: Gowrishankar Muthukrishnan Instead of llX, use C99 standard "PRIu64" in format specifier. Former one breaks compile in ppc64le. Fixes: c2c167fdb3 ("bus/fslmc: support memory event callbacks for VFIO") Signed-off-by: Gowrishankar Muthukrishnan -- v2: - corrected format specifier wrt add

Re: [dpdk-dev] [PATCH v2] bus/fslmc: use PRIu64 instead of llX in format specifier

2018-04-13 Thread gowrishankar muthukrishnan
On Friday 13 April 2018 04:10 PM, Gowrishankar wrote: From: Gowrishankar Muthukrishnan Instead of llX, use C99 standard "PRIu64" in format specifier. Former one breaks compile in ppc64le. Fixes: c2c167fdb3 ("bus/fslmc: support memory event callbacks for VFIO") Signed-off-by: Gowrishankar Muth

[dpdk-dev] [PATCH v2] bus/fslmc: use PRIu64 instead of llX in format specifier

2018-04-13 Thread Gowrishankar
From: Gowrishankar Muthukrishnan Instead of llX, use C99 standard "PRIu64" in format specifier. Former one breaks compile in ppc64le. Fixes: c2c167fdb3 ("bus/fslmc: support memory event callbacks for VFIO") Signed-off-by: Gowrishankar Muthukrishnan -- v2: - corrected format specifier wrt add