From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756220AbbFRQT0 (ORCPT ); Thu, 18 Jun 2015 12:19:26 -0400 Received: from mail-pd0-f171.google.com ([209.85.192.171]:36403 "EHLO mail-pd0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754528AbbFRQTP (ORCPT ); Thu, 18 Jun 2015 12:19:15 -0400 Date: Thu, 18 Jun 2015 21:49:05 +0530 From: Sudip Mukherjee To: Greg Kroah-Hartman Cc: David Howells , Ulf Hansson , Matthias Brugger , Johan Hovold , linux-am33-list@redhat.com, linux-kernel@vger.kernel.org, linux-mmc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-usb@vger.kernel.org Subject: Re: [PATCH v2 5/7] samples: kdbus: disable for mn10300 Message-ID: <20150618161905.GB21198@sudip-PC> References: <1434629873-11668-1-git-send-email-sudipm.mukherjee@gmail.com> <1434629873-11668-6-git-send-email-sudipm.mukherjee@gmail.com> <20150618143958.GA8830@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150618143958.GA8830@kroah.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jun 18, 2015 at 07:39:58AM -0700, Greg Kroah-Hartman wrote: > On Thu, Jun 18, 2015 at 05:47:51PM +0530, Sudip Mukherjee wrote: > > While building it failed with: > > In function 'prime_new': > > error: '__NR_memfd_create' undeclared (first use in this function) > > > > memfd_create syscall has not yet been implemented for mn10300. > > so disable compilation of samples/kdbus for now with mn10300. > > > > Signed-off-by: Sudip Mukherjee > > --- > > samples/Kconfig | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/samples/Kconfig b/samples/Kconfig > > index a4c6b2f..20c55af 100644 > > --- a/samples/Kconfig > > +++ b/samples/Kconfig > > @@ -57,7 +57,7 @@ config SAMPLE_KDB > > > > config SAMPLE_KDBUS > > bool "Build kdbus API example" > > - depends on KDBUS > > + depends on KDBUS && !MN10300 > > Why not just add the memfd syscall to this arch? Yes, I intend to. But for now this will fix allmodconfig. >I thought someone had already sent such a patch in a while ago. Then it is still not merged. :( I will try to find that patch adding memfd syscall. And if i find it whom shall I forward it to? regards sudip From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sudip Mukherjee Subject: Re: [PATCH v2 5/7] samples: kdbus: disable for mn10300 Date: Thu, 18 Jun 2015 21:49:05 +0530 Message-ID: <20150618161905.GB21198@sudip-PC> References: <1434629873-11668-1-git-send-email-sudipm.mukherjee@gmail.com> <1434629873-11668-6-git-send-email-sudipm.mukherjee@gmail.com> <20150618143958.GA8830@kroah.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20150618143958.GA8830-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org> Sender: linux-usb-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Greg Kroah-Hartman Cc: David Howells , Ulf Hansson , Matthias Brugger , Johan Hovold , linux-am33-list-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: linux-mediatek@lists.infradead.org On Thu, Jun 18, 2015 at 07:39:58AM -0700, Greg Kroah-Hartman wrote: > On Thu, Jun 18, 2015 at 05:47:51PM +0530, Sudip Mukherjee wrote: > > While building it failed with: > > In function 'prime_new': > > error: '__NR_memfd_create' undeclared (first use in this function) > > > > memfd_create syscall has not yet been implemented for mn10300. > > so disable compilation of samples/kdbus for now with mn10300. > > > > Signed-off-by: Sudip Mukherjee > > --- > > samples/Kconfig | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/samples/Kconfig b/samples/Kconfig > > index a4c6b2f..20c55af 100644 > > --- a/samples/Kconfig > > +++ b/samples/Kconfig > > @@ -57,7 +57,7 @@ config SAMPLE_KDB > > > > config SAMPLE_KDBUS > > bool "Build kdbus API example" > > - depends on KDBUS > > + depends on KDBUS && !MN10300 > > Why not just add the memfd syscall to this arch? Yes, I intend to. But for now this will fix allmodconfig. >I thought someone had already sent such a patch in a while ago. Then it is still not merged. :( I will try to find that patch adding memfd syscall. And if i find it whom shall I forward it to? regards sudip -- To unsubscribe from this list: send the line "unsubscribe linux-usb" 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: sudipm.mukherjee@gmail.com (Sudip Mukherjee) Date: Thu, 18 Jun 2015 21:49:05 +0530 Subject: [PATCH v2 5/7] samples: kdbus: disable for mn10300 In-Reply-To: <20150618143958.GA8830@kroah.com> References: <1434629873-11668-1-git-send-email-sudipm.mukherjee@gmail.com> <1434629873-11668-6-git-send-email-sudipm.mukherjee@gmail.com> <20150618143958.GA8830@kroah.com> Message-ID: <20150618161905.GB21198@sudip-PC> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Thu, Jun 18, 2015 at 07:39:58AM -0700, Greg Kroah-Hartman wrote: > On Thu, Jun 18, 2015 at 05:47:51PM +0530, Sudip Mukherjee wrote: > > While building it failed with: > > In function 'prime_new': > > error: '__NR_memfd_create' undeclared (first use in this function) > > > > memfd_create syscall has not yet been implemented for mn10300. > > so disable compilation of samples/kdbus for now with mn10300. > > > > Signed-off-by: Sudip Mukherjee > > --- > > samples/Kconfig | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/samples/Kconfig b/samples/Kconfig > > index a4c6b2f..20c55af 100644 > > --- a/samples/Kconfig > > +++ b/samples/Kconfig > > @@ -57,7 +57,7 @@ config SAMPLE_KDB > > > > config SAMPLE_KDBUS > > bool "Build kdbus API example" > > - depends on KDBUS > > + depends on KDBUS && !MN10300 > > Why not just add the memfd syscall to this arch? Yes, I intend to. But for now this will fix allmodconfig. >I thought someone had already sent such a patch in a while ago. Then it is still not merged. :( I will try to find that patch adding memfd syscall. And if i find it whom shall I forward it to? regards sudip