On Saturday 31 October 2015 07:20:17 kbuild test robot wrote:I will fix both of these in the next patchset, early next week. If there are any other comments/suggestions, please let me know. Thanks for the feedback.
> 785 dev_dbg(rtd->cpu_dai->dev, "%s: size 0x%x @ 0x%p\n",Both reports are for the same bug: the "0x%x" should be "0x%zx".
786 __func__, size, buf->area);
There is another bug in the same line: "0x%p" should be "%pK",
to avoid the duplicate "0x" and to not leak the pointer when
kptr_restrict is set.
Arnd