From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754833AbbCXRQP (ORCPT ); Tue, 24 Mar 2015 13:16:15 -0400 Received: from mail-ie0-f179.google.com ([209.85.223.179]:33952 "EHLO mail-ie0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933159AbbCXRPy (ORCPT ); Tue, 24 Mar 2015 13:15:54 -0400 MIME-Version: 1.0 In-Reply-To: <551194C8.4070707@suse.cz> References: <1425906560-13798-1-git-send-email-gregkh@linuxfoundation.org> <1425906560-13798-14-git-send-email-gregkh@linuxfoundation.org> <551194C8.4070707@suse.cz> Date: Tue, 24 Mar 2015 18:15:53 +0100 Message-ID: Subject: Re: [PATCH 13/14] kdbus: add walk-through user space example From: David Herrmann To: Jiri Slaby Cc: Greg Kroah-Hartman , Arnd Bergmann , "Eric W. Biederman" , One Thousand Gnomes , Tom Gundersen , Jiri Kosina , Andy Lutomirski , Linux API , linux-kernel , Daniel Mack , Djalal Harouni Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi On Tue, Mar 24, 2015 at 5:46 PM, Jiri Slaby wrote: > On 03/09/2015, 02:09 PM, Greg Kroah-Hartman wrote: >> --- /dev/null >> +++ b/samples/kdbus/Makefile >> @@ -0,0 +1,10 @@ >> +# kbuild trick to avoid linker error. Can be omitted if a module is built. >> +obj- := dummy.o >> + >> +hostprogs-y += kdbus-workers >> + >> +always := $(hostprogs-y) > > Errr, no. Not only it causes build failures (even with KDBUS=n), it > definitely should not be built for everyone. It's only built if CONFIG_SAMPLES is set, right? What build-failures does it cause? linux/kdbus.h is not optional based on CONFIG_KDBUS, so the samples should build just fine. Can you tell me what kind of errors you get? The kbuild-robots didn't report anything so far. > And why is it a host prog? It's a sample prog for the kernel I am > building, i.e. for the destination arch, like all the other samples. It's modeled after the other user-space examples in ./samples/, which all use hostprogs (see samples/{bpf,hidraw,seccomp,uhid}/Makefile). I have no idea how to build programs that run on the target architecture. Documentation/kbuild/makefiles.txt doesn't list it, which is, I guess, the reason why everyone used hostprogs so far. And given that autotools calls the target architecture "--host", I actually thought this is what hostprogs does.. apparently that's not the case, sorry. Thanks David