From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.4 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS, USER_AGENT_MUTT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3B875C04AB1 for ; Sat, 11 May 2019 06:02:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0D753217D7 for ; Sat, 11 May 2019 06:02:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1557554530; bh=p/HRiT9yqHlg2V7XNH8WpqZb2zm5DrER+cqskPbJ7+s=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=V3TKYd8SsuABL0nVRYF/8HfuFkX0CIJ7p439Sxi7+Spmo8zAvfO0FgY/LBsZdJR5x 3GLxEuJKINavF/DQv9ZkA9YOZpmb2aLNQQH45/lZvgEH9w5LMqbDmza3Logh9mia8e uDB4O14RSTAdmrM9XvivNl4btko/EPYxLl7vLYlA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726325AbfEKGCG (ORCPT ); Sat, 11 May 2019 02:02:06 -0400 Received: from mail.kernel.org ([198.145.29.99]:54554 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725874AbfEKGCG (ORCPT ); Sat, 11 May 2019 02:02:06 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id C61012173B; Sat, 11 May 2019 06:02:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1557554525; bh=p/HRiT9yqHlg2V7XNH8WpqZb2zm5DrER+cqskPbJ7+s=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ktm0kz52FhtprAmfDKfRf0+t/ACR967wBlZo/njpZyLTvdvQQcZE/JHEG0mPhwMnS fSPu28p3h+yTt9jEZ2bBD58kVUAHRLZfIuy79u26uItO5gMpvcOkRhorvGTs7CSDs1 MdDsjOpnTitVkTfxOZTdc+qoCez/9OEhX6dWx0xE= Date: Sat, 11 May 2019 08:02:03 +0200 From: Greg Kroah-Hartman To: Masahiro Yamada Cc: "Joel Fernandes (Google)" , Linux Kernel Mailing List , Adrian Ratiu , Alexei Starovoitov , Andrew Morton , atish patra , bpf@vger.kernel.org, Brendan Gregg , Brendan Gregg , Daniel Colascione , Daniel Borkmann , Dan Williams , Dietmar Eggemann , duyuchao , Guenter Roeck , Jonathan Corbet , Karim Yaghmour , Kees Cook , "Cc: Android Kernel" , "open list:DOCUMENTATION" , "open list:KERNEL SELFTEST FRAMEWORK" , linux-trace-devel@vger.kernel.org, Manjo Raja Rao , Masami Hiramatsu , =?utf-8?Q?Micha=C5=82?= Gregorczyk , Michal Gregorczyk , Mohammad Husain , Olof Johansson , Qais Yousef , Randy Dunlap , Steven Rostedt , Shuah Khan , Srinivas Ramana , Tamir Carmeli , Yonghong Song Subject: Re: [PATCH 3/3] kheaders: Make it depend on sysfs Message-ID: <20190511060203.GA18650@kroah.com> References: <20190510210243.152808-1-joel@joelfernandes.org> <20190510210243.152808-4-joel@joelfernandes.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.11.4 (2019-03-13) Sender: bpf-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: bpf@vger.kernel.org On Sat, May 11, 2019 at 09:52:04AM +0900, Masahiro Yamada wrote: > On Sat, May 11, 2019 at 6:05 AM Joel Fernandes (Google) > wrote: > > > > The kheaders archive is exposed through SYSFS in /sys/kernel/. Make it > > depend on SYSFS as it makes no sense to enable this feature without it. > > > And, it also makes no sense to break the feature by 1/3, > then fix it by 3/3. > > > Why don't you squash this? I agree, this belongs in patch 1/3. From mboxrd@z Thu Jan 1 00:00:00 1970 From: gregkh at linuxfoundation.org (Greg Kroah-Hartman) Date: Sat, 11 May 2019 08:02:03 +0200 Subject: [PATCH 3/3] kheaders: Make it depend on sysfs In-Reply-To: References: <20190510210243.152808-1-joel@joelfernandes.org> <20190510210243.152808-4-joel@joelfernandes.org> Message-ID: <20190511060203.GA18650@kroah.com> On Sat, May 11, 2019 at 09:52:04AM +0900, Masahiro Yamada wrote: > On Sat, May 11, 2019 at 6:05 AM Joel Fernandes (Google) > wrote: > > > > The kheaders archive is exposed through SYSFS in /sys/kernel/. Make it > > depend on SYSFS as it makes no sense to enable this feature without it. > > > And, it also makes no sense to break the feature by 1/3, > then fix it by 3/3. > > > Why don't you squash this? I agree, this belongs in patch 1/3. From mboxrd@z Thu Jan 1 00:00:00 1970 From: gregkh@linuxfoundation.org (Greg Kroah-Hartman) Date: Sat, 11 May 2019 08:02:03 +0200 Subject: [PATCH 3/3] kheaders: Make it depend on sysfs In-Reply-To: References: <20190510210243.152808-1-joel@joelfernandes.org> <20190510210243.152808-4-joel@joelfernandes.org> Message-ID: <20190511060203.GA18650@kroah.com> Content-Type: text/plain; charset="UTF-8" Message-ID: <20190511060203.Vvp795LX8XUR3pxIkX-deKa8MBBoa-50dIYxrUvtCu4@z> On Sat, May 11, 2019@09:52:04AM +0900, Masahiro Yamada wrote: > On Sat, May 11, 2019 at 6:05 AM Joel Fernandes (Google) > wrote: > > > > The kheaders archive is exposed through SYSFS in /sys/kernel/. Make it > > depend on SYSFS as it makes no sense to enable this feature without it. > > > And, it also makes no sense to break the feature by 1/3, > then fix it by 3/3. > > > Why don't you squash this? I agree, this belongs in patch 1/3.