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=-5.5 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS, T_DKIMWL_WL_HIGH,URIBL_BLOCKED,USER_AGENT_MUTT autolearn=ham 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 D0BDAC43219 for ; Sat, 4 May 2019 08:12:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 95A002085A for ; Sat, 4 May 2019 08:12:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1556957524; bh=SBbvUNLEDR59y1jM6qdHyiKYw3PXx9SL+kY8eY9adTE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=l22EGJH09L9S2ogjIDv8ViCidxMEB0OTLM1q/SSXXMnD5M14T1IuqAn5tZL++2D7I eQooqi2AkxGj7sSgFyNhNDBWLLnRJbboK9Nggo5Y6jjbcXjlY7JNdOZ5CURqpVJuQF KDy8OlIisKSN3dY3h2FzcVH24TGTcDiJ4/QJFHeM= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726907AbfEDIMA (ORCPT ); Sat, 4 May 2019 04:12:00 -0400 Received: from mail.kernel.org ([198.145.29.99]:58986 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726217AbfEDIL7 (ORCPT ); Sat, 4 May 2019 04:11:59 -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 8819920645; Sat, 4 May 2019 08:11:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1556957518; bh=SBbvUNLEDR59y1jM6qdHyiKYw3PXx9SL+kY8eY9adTE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=bCI0mV+q7oTtHAc1tn1nAzj/sTUxo6EII2xFNvacFrex/zzCVejjFj9qxHNazmNxt Grfo+FlEjjQBYJ/kK0Oo1eNADT8zgfZjJC++xoDuWHd9J76GesfCdhAJ8eLbfHy/kX Uhy0Zad+IsIDTKh4IWZm3bQG2d0ChpRr/XKS+4Bk= Date: Sat, 4 May 2019 10:11:55 +0200 From: Greg Kroah-Hartman To: Alexei Starovoitov Cc: Joel Fernandes , Masahiro Yamada , Linux Kernel Mailing List , Steven Rostedt , Adrian Ratiu , Alexei Starovoitov , Andrew Morton , atish patra , bpf , 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 , Shuah Khan , Srinivas Ramana , Tamir Carmeli , Yonghong Song Subject: Re: [PATCH] kheaders: Move from proc to sysfs Message-ID: <20190504081155.GA13298@kroah.com> References: <20190503182459.159121-1-joel@joelfernandes.org> <20190504005920.GA261146@google.com> 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: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, May 04, 2019 at 12:46:21AM -0700, Alexei Starovoitov wrote: > On Fri, May 3, 2019 at 5:59 PM Joel Fernandes wrote: > > > > On Sat, May 04, 2019 at 09:21:41AM +0900, Masahiro Yamada wrote: > > > On Sat, May 4, 2019 at 9:18 AM Masahiro Yamada > > > wrote: > > > > > > > > On Sat, May 4, 2019 at 3:27 AM Joel Fernandes (Google) > > > > wrote: > > > > > > > > > > The kheaders archive consisting of the kernel headers used for compiling > > > > > bpf programs is in /proc. However there is concern that moving it here > > > > > will make it permanent. Let us move it to /sys/kernel as discussed [1]. > > > > > > > > > > [1] https://lore.kernel.org/patchwork/patch/1067310/#1265969 > > > > > > > > > > Suggested-by: Steven Rostedt > > > > > Signed-off-by: Joel Fernandes (Google) > > > > > --- > > > > > This patch applies on top of the previous patch that was applied to the > > > > > driver tree: > > > > > https://lore.kernel.org/patchwork/patch/1067310/ > > I think it would be cleaner to take it out, squash and reapply. It is in a un-rebasable-tree already, sorry. A patch on top is fine. thanks, greg k-h