Received: by 10.213.65.68 with SMTP id h4csp1055756imn; Sat, 24 Mar 2018 02:06:00 -0700 (PDT) X-Google-Smtp-Source: AG47ELt7OmM+Rxqc7qkWvwj1KNAvpgTEA9wAXGgAkGMtOBkt1hXDv0gPrS4Hu+MqQlek0hvZhxPR X-Received: by 2002:a17:902:8545:: with SMTP id d5-v6mr32430170plo.20.1521882360735; Sat, 24 Mar 2018 02:06:00 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1521882360; cv=none; d=google.com; s=arc-20160816; b=y3IzMes1DpkWwZJ+YW3qUBE8CAoTEKL/hy4cA2QQfIYedaibgoB42nNZifnMjQxgVa 3NRK9ZsoFAKUya9+PoOpdKJY1ArAQy6kJDVZtmJV/PwsRcqio54OXyF/7pA9qmMY9RHU SZ9X1FzZ011yFmQq/906X5LEtupglcI2zvFm3yBpN36aNfJK6MY6s6LCrgsgaL2rGIAC /a8Du4V/8iRDGw76XX0dmg0scKioW7Vjod0WBiz0HndTirWRCZEnJfcc5tiS0KGLKkRK ohYn2SO75wWaj5FTTpX69YI2UxGz153+oAfu7MSrFYz6BgZrBQYiyxgmzq4dieGsLPqn M/AQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date:arc-authentication-results; bh=0sxOp7x/eMQLueYFMlLGepAvbnY7r/yt98QDdzDY4Lg=; b=W974klAIV/X5tp5QJVoV2ZVgSK0YZrBCzndW6o2una0RVhK6ld/Vg/T/XKKR132mxK ULc0lw6ujHX5zYHnQfjlPv8LhiX1rmkJdnACF2mtRSxIBCLfkfWLocfdBlVvHkUgWHXp 9/bHbM3kZs3ynlTnGhPWI1N8htzcABScmcVN8FfIyPiqGbHQzVTqVVHrjKUcR9BrV/7J T1Vp8lGICtzlFkC055t67EpPK6AF978yIkFcl3/+iMHg8hHvK7EcxLF57a1Q+U41uJ97 ddoRq5ERDzVsR/MElb7sMzNabnMJydKVbIQWqEnRSMUsyRq+YPkR7kE2fM93iE8+sW9L qc6Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id t18si171886pfi.319.2018.03.24.02.05.46; Sat, 24 Mar 2018 02:06:00 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751883AbeCXJEw (ORCPT + 99 others); Sat, 24 Mar 2018 05:04:52 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:52414 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751734AbeCXJEu (ORCPT ); Sat, 24 Mar 2018 05:04:50 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 17F59113C; Sat, 24 Mar 2018 09:04:48 +0000 (UTC) Date: Sat, 24 Mar 2018 10:04:46 +0100 From: Greg Kroah-Hartman To: Arend van Spriel Cc: LKML , Brian Norris Subject: Re: [PATCH for-4.16 2/3] drivers: change struct device_driver::coredump() return type to void Message-ID: <20180324090446.GA863@kroah.com> References: <1521107725-25027-1-git-send-email-aspriel@gmail.com> <1521107725-25027-3-git-send-email-aspriel@gmail.com> <20180323165543.GA21833@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.4 (2018-02-28) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Mar 24, 2018 at 09:50:05AM +0100, Arend van Spriel wrote: > On Fri, Mar 23, 2018 at 5:55 PM, Greg Kroah-Hartman > wrote: > > On Thu, Mar 15, 2018 at 10:55:24AM +0100, Arend van Spriel wrote: > >> Upon submitting a patch for mwifiex [1] it was discussed whether this > >> callback function could fail. To keep things simple there is no need > >> for the error code so the driver can do the task synchronous or not > >> without worries. Currently the device driver core already ignores the > >> return value so changing it to void. > >> > >> [1] https://patchwork.kernel.org/patch/10231933/ > >> > >> Signed-off-by: Arend van Spriel > >> --- > >> include/linux/device.h | 5 ++++- > >> 1 file changed, 4 insertions(+), 1 deletion(-) > >> > >> diff --git a/include/linux/device.h b/include/linux/device.h > >> index b093405..f08c25b 100644 > >> --- a/include/linux/device.h > >> +++ b/include/linux/device.h > >> @@ -256,6 +256,9 @@ enum probe_type { > >> * automatically. > >> * @pm: Power management operations of the device which matched > >> * this driver. > >> + * @coredump: Called when sysfs entry is written to. The device driver > >> + * is expected to call the dev_coredump API resulting in a > >> + * uevent. > >> * @p: Driver core's private data, no one other than the driver > >> * core can touch this. > >> * > >> @@ -287,7 +290,7 @@ struct device_driver { > >> const struct attribute_group **groups; > >> > >> const struct dev_pm_ops *pm; > >> - int (*coredump) (struct device *dev); > >> + void (*coredump) (struct device *dev); > > > > Isn't this going to cause build warnings now? Are there no users of > > this callback function yet? > > Hi Greg, > > I submitted driver patches for the 4.17 kernel and from that > discussion we concluded it would be good to change to void return > type. So those driver patches were dropped. The caller of the callback > in drivers/base/dd.c does not use the return value so from that side > there is no issue. So my motivation for asking to consider this for > 4.16 is so I can resubmit the driver patches for 4.17 if there is > still time before the merge window. It's too late for 4.16 for this, and I would queue it up in my tree now but I don't want to cause any build warnings in linux-next from it. So how about I submit something like this right after 4.17-rc1 is out, where the function signature is changed _and_ all definitions of that function are changed at the same time to keep everything sane at once? Can you send me such a patch right before -rc1 is out base on Linus's tree? That should give everyone enough time to get the things merged, right? Or is there no in-flight patches to use this yet, and I can queue it up now for -rc1 as no build warnings will happen? thanks, greg k-h