From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg Kroah-Hartman Subject: Re: wl1251: NVS firmware data Date: Mon, 8 Dec 2014 11:37:14 -0500 Message-ID: <20141208163714.GA31169@kroah.com> References: <201411271506.20457@pali> <20141127155840.GC24149@kroah.com> <20141206124954.GB17289@amd> <201412061402.21514@pali> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: Pali =?iso-8859-1?Q?Roh=E1r?= , Pavel Machek , "John W. Linville" , Grazvydas Ignotas , "linux-wireless@vger.kernel.org" , Network Development , Linux Kernel Mailing List , Ivaylo Dimitrov , Aaro Koskinen , Kalle Valo , Sebastian Reichel , David Gnedt To: Ming Lei Return-path: Content-Disposition: inline In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Mon, Dec 08, 2014 at 11:18:18PM +0800, Ming Lei wrote: > On Sat, Dec 6, 2014 at 9:02 PM, Pali Roh=E1r w= rote: > > On Saturday 06 December 2014 13:49:54 Pavel Machek wrote: >=20 > > > > /** > > + * request_firmware_prefer_user: - prefer usermode helper for load= ing firmware > > + * @firmware_p: pointer to firmware image > > + * @name: name of firmware file > > + * @device: device for which firmware is being loaded > > + * > > + * This function works pretty much like request_firmware(), but it= prefer > > + * usermode helper. If usermode helper fails then it fallback to d= irect access. > > + * Usefull for dynamic or model specific firmware data. > > + **/ > > +int request_firmware_prefer_user(const struct firmware **firmware_= p, > > + const char *name, struct device *device= ) > > +{ > > + int ret; > > + __module_get(THIS_MODULE); > > + ret =3D _request_firmware(firmware_p, name, device, > > + FW_OPT_UEVENT | FW_OPT_PREFER_USER)= ; > > + module_put(THIS_MODULE); > > + return ret; > > +} > > +EXPORT_SYMBOL_GPL(request_firmware_prefer_user); >=20 > I'd like to introduce request_firmware_user() which only requests > firmware from user space, and this way is simpler and more flexible > since we have request_firmware_direct() already. Why would a driver care about what program provides the firmware? It shouldn't at all, and we want to get rid of the userspace firmware loader, not encourage drivers to use it "exclusively" at all. So no, I don't want to see this, and I don't want drivers to worry abou= t this either. greg k-h