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=-6.5 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no 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 C1525C2D0A8 for ; Sat, 26 Sep 2020 06:26:31 +0000 (UTC) Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 3AD312080C for ; Sat, 26 Sep 2020 06:26:31 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="zSroE5zD" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 3AD312080C Authentication-Results: mail.kernel.org; dmarc=pass (p=none dis=none) header.from=linuxfoundation.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=linux-kernel-mentees-bounces@lists.linuxfoundation.org Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id E493A204A2; Sat, 26 Sep 2020 06:26:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id af8guKCNPUTn; Sat, 26 Sep 2020 06:26:29 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [140.211.9.56]) by silver.osuosl.org (Postfix) with ESMTP id 88F6C20490; Sat, 26 Sep 2020 06:26:29 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id 656A1C0859; Sat, 26 Sep 2020 06:26:29 +0000 (UTC) Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by lists.linuxfoundation.org (Postfix) with ESMTP id 52DC3C0051 for ; Sat, 26 Sep 2020 06:26:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 3B32020490 for ; Sat, 26 Sep 2020 06:26:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HEcStdNdyv8a for ; Sat, 26 Sep 2020 06:26:27 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by silver.osuosl.org (Postfix) with ESMTPS id A50432035E for ; Sat, 26 Sep 2020 06:26:27 +0000 (UTC) Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (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 4B3E42080C; Sat, 26 Sep 2020 06:26:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601101587; bh=5wTn3YQX0AGA+1R85x5KQMu5i6nOD0OeovPMzjUoqJo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=zSroE5zDFPpbZSQYsoSsE8V+Uc3FMZkWtptZIKH/OBJ6G2X6Tkq2QJO88ycpAin6/ J/LMWhFMEHnwL/24LtiF+b3Sk+wLfMqnWPQHKimlYQO2IZsTGklrheDnRqwtFy3Y+O tu74T824rJ7NsmxW5uVSJJzvrABwMS1DfYiIDG8k= Date: Sat, 26 Sep 2020 08:26:23 +0200 From: Greg KH To: Lukas Bulwahn Message-ID: <20200926062623.GA640457@kroah.com> References: <20200925212008.694018-1-ujjwalkumar0501@gmail.com> <20200926061100.GB637197@kroah.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: Cc: linux-kernel-mentees@lists.linuxfoundation.org, Ujjwal Kumar Subject: Re: [Linux-kernel-mentees] [PATCH] kconfig: Prepend interpeters when calling scripts X-BeenThere: linux-kernel-mentees@lists.linuxfoundation.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: linux-kernel-mentees-bounces@lists.linuxfoundation.org Sender: "Linux-kernel-mentees" On Sat, Sep 26, 2020 at 08:19:30AM +0200, Lukas Bulwahn wrote: > > > On Sat, 26 Sep 2020, Greg KH wrote: > > > On Sat, Sep 26, 2020 at 02:50:08AM +0530, Ujjwal Kumar wrote: > > > Signed-off-by: Ujjwal Kumar > > > > I know I can't take pathces with no changelog text, maybe other > > maintainers are more lax :( > > > > I would like find that maintainer as well... ;) > > But *serious mode* now: > > This patch was only on the linux-kernel-mentees list so far. > > Ujjwal and me are just using the linux-kernel-mentees to develop the > patch together. Before we send it to lkml and linux-kbuild, we will have > done a first review and will have a proper commit message in place. > > Greg, your feedback on these patches is of course always welcome when you > spot something smelly. That was my "smelly" spotting :) greg k-h _______________________________________________ Linux-kernel-mentees mailing list Linux-kernel-mentees@lists.linuxfoundation.org https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees