From mboxrd@z Thu Jan 1 00:00:00 1970 From: simran rai Subject: Re: [PATCH 2/2] sound: soc: Add Cygnus audio driver Date: Fri, 30 Oct 2015 16:36:05 -0700 Message-ID: <5633FEE5.7050101@broadcom.com> References: <201510310722.jTEbgeBu%fengguang.wu@intel.com> <3878425.UJmmiCl69s@wuerfel> Mime-Version: 1.0 Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <3878425.UJmmiCl69s@wuerfel> Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Arnd Bergmann , kbuild test robot Cc: kbuild-all-JC7UmRfGjtg@public.gmane.org, Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Ray Jui , Scott Branden , Liam Girdwood , Mark Brown , Jaroslav Kysela , Takashi Iwai , Lori Hikichi , devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, bcm-kernel-feedback-list-dY08KVG/lbpWk0Htik3J/w@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Arun Parameswaran , alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org List-Id: alsa-devel@alsa-project.org Hi Arnd, On 10/30/2015 4:28 PM, Arnd Bergmann wrote: > On Saturday 31 October 2015 07:20:17 kbuild test robot wrote: >> > 785 dev_dbg(rtd->cpu_dai->dev, "%s: size 0x%x @ 0x%p\n", >> 786 __func__, size, buf->area); >> > Both reports are for the same bug: the "0x%x" should be "0x%zx". > > 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 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. Simran -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html From mboxrd@z Thu Jan 1 00:00:00 1970 From: ssimran@broadcom.com (simran rai) Date: Fri, 30 Oct 2015 16:36:05 -0700 Subject: [PATCH 2/2] sound: soc: Add Cygnus audio driver In-Reply-To: <3878425.UJmmiCl69s@wuerfel> References: <201510310722.jTEbgeBu%fengguang.wu@intel.com> <3878425.UJmmiCl69s@wuerfel> Message-ID: <5633FEE5.7050101@broadcom.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi Arnd, On 10/30/2015 4:28 PM, Arnd Bergmann wrote: > On Saturday 31 October 2015 07:20:17 kbuild test robot wrote: >> > 785 dev_dbg(rtd->cpu_dai->dev, "%s: size 0x%x @ 0x%p\n", >> 786 __func__, size, buf->area); >> > Both reports are for the same bug: the "0x%x" should be "0x%zx". > > 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 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. Simran From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758337AbbJ3XgQ (ORCPT ); Fri, 30 Oct 2015 19:36:16 -0400 Received: from mail-gw1-out.broadcom.com ([216.31.210.62]:48358 "EHLO mail-gw1-out.broadcom.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751309AbbJ3XgO (ORCPT ); Fri, 30 Oct 2015 19:36:14 -0400 X-IronPort-AV: E=Sophos;i="5.20,221,1444719600"; d="scan'208";a="79389081" Subject: Re: [PATCH 2/2] sound: soc: Add Cygnus audio driver To: Arnd Bergmann , kbuild test robot References: <201510310722.jTEbgeBu%fengguang.wu@intel.com> <3878425.UJmmiCl69s@wuerfel> CC: , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Ray Jui , Scott Branden , Liam Girdwood , Mark Brown , Jaroslav Kysela , Takashi Iwai , Lori Hikichi , , , , , Arun Parameswaran , From: simran rai Message-ID: <5633FEE5.7050101@broadcom.com> Date: Fri, 30 Oct 2015 16:36:05 -0700 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <3878425.UJmmiCl69s@wuerfel> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Arnd, On 10/30/2015 4:28 PM, Arnd Bergmann wrote: > On Saturday 31 October 2015 07:20:17 kbuild test robot wrote: >> > 785 dev_dbg(rtd->cpu_dai->dev, "%s: size 0x%x @ 0x%p\n", >> 786 __func__, size, buf->area); >> > Both reports are for the same bug: the "0x%x" should be "0x%zx". > > 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 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. Simran