Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CA2C0C05027 for ; Thu, 9 Feb 2023 01:50:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231135AbjBIBuU (ORCPT ); Wed, 8 Feb 2023 20:50:20 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36850 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229687AbjBIBuS (ORCPT ); Wed, 8 Feb 2023 20:50:18 -0500 Received: from www262.sakura.ne.jp (www262.sakura.ne.jp [202.181.97.72]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A900F25286 for ; Wed, 8 Feb 2023 17:50:16 -0800 (PST) Received: from fsav412.sakura.ne.jp (fsav412.sakura.ne.jp [133.242.250.111]) by www262.sakura.ne.jp (8.15.2/8.15.2) with ESMTP id 3191oDnK061127; Thu, 9 Feb 2023 10:50:14 +0900 (JST) (envelope-from penguin-kernel@I-love.SAKURA.ne.jp) Received: from www262.sakura.ne.jp (202.181.97.72) by fsav412.sakura.ne.jp (F-Secure/fsigk_smtp/550/fsav412.sakura.ne.jp); Thu, 09 Feb 2023 10:50:13 +0900 (JST) X-Virus-Status: clean(F-Secure/fsigk_smtp/550/fsav412.sakura.ne.jp) Received: from [192.168.1.6] (M106072142033.v4.enabler.ne.jp [106.72.142.33]) (authenticated bits=0) by www262.sakura.ne.jp (8.15.2/8.15.2) with ESMTPSA id 3191oDG3061120 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=NO); Thu, 9 Feb 2023 10:50:13 +0900 (JST) (envelope-from penguin-kernel@I-love.SAKURA.ne.jp) Message-ID: <1e3085b0-c19e-a585-60de-5f5db5261920@I-love.SAKURA.ne.jp> Date: Thu, 9 Feb 2023 10:50:13 +0900 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: [PATCH] drivers/core: Replace lockdep_set_novalidate_class() with unique class keys Content-Language: en-US To: Linus Torvalds Cc: Alan Stern , syzkaller , Dmitry Vyukov , Greg Kroah-Hartman , "Rafael J. Wysocki" , Peter Zijlstra , LKML , USB list , Hillf Danton References: <827177aa-bb64-87a9-e1af-dfe070744045@I-love.SAKURA.ne.jp> <20230208080739.1649-1-hdanton@sina.com> <1ad499bb-0c53-7529-ff00-e4328823f6fa@I-love.SAKURA.ne.jp> From: Tetsuo Handa In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/02/09 9:46, Linus Torvalds wrote: > On Wed, Feb 8, 2023 at 4:23 PM Tetsuo Handa > wrote: >> >> Did I misuse the Co-developed-by: tag? I added your Signed-off-by: tag because >> https://docs.kernel.org/process/submitting-patches.html#when-to-use-acked-by-cc-and-co-developed-by >> states that "every Co-developed-by: must be immediately followed by a Signed-off-by: >> of the associated co-author." > > That doesn't mean that *You* can add a Signed-off-by: > > Nobody can certify sign-off for anybody else. Read the sign-off rules: > you can add your *own* sign-off if the rules hold, but you can't sign > off for somebody else. > > The "Co-developed-by: must be immediately followed by a > Signed-off-by:" thing only means that if there are multiple > developers, then ALL DEVELOPERS MUST SIGN OFF. > > It absolutely does *NOT* mean that you adding a Co-developed-by means > that you then add a Signed-off-by. > > That's like faking somebody else's signature on some paperwork. Never > do that either, and it's hopefully obvious why. OK. Then, how to handle a case where a developer suggested a diff but he/she does not propose that diff as a formal patch? Hillf is suggesting diffs for many bugs (an example is https://syzkaller.appspot.com/bug?id=ee93abc9a483645fc0914811af9c12da355a2e3e ), and some of diffs look reasonable/correct, but Hillf never tries to propose as a formal patch, and that diff is left forgotten and that bug remains unfixed. I don't want to steal Hillf's effort. But given that I can't add Co-developed-by: and Signed-off-by: on behalf of Hillf, how can I propose a formal patch in a way that preserves Hillf's effort? Is Suggested-by: suitable for this case?