mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Luis R. Rodriguez" <mcgrof@suse.com>
To: Josh Boyer <jwboyer@fedoraproject.org>
Cc: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>,
	Greg KH <gregkh@linuxfoundation.org>,
	Ming Lei <ming.lei@canonical.com>,
	Jonathan Corbet <corbet@lwn.net>,
	"Linux-Kernel@Vger. Kernel. Org" <linux-kernel@vger.kernel.org>,
	linux-doc@vger.kernel.org, David Woodhouse <dwmw2@infradead.org>,
	David Howells <dhowells@redhat.com>,
	Seth Forshee <seth.forshee@canonical.com>,
	Rusty Russell <rusty@rustcorp.com.au>,
	Michal Marek <mmarek@suse.cz>,
	Matthew Garrett <mjg59@srcf.ucam.org>,
	kyle@kernel.org,
	linux-security-module <linux-security-module@vger.kernel.org>,
	keyrings@linux-nfs.org, Tom Gundersen <teg@jklm.no>
Subject: Re: [PATCH v2 4/5] firmware: generalize reading file contents as a helper
Date: Fri, 9 Oct 2015 00:54:37 +0200	[thread overview]
Message-ID: <20151008225437.GL14464@wotan.suse.de> (raw)
In-Reply-To: <CA+5PVA41gj_yyNKGD3_5bEDctBgdX_E9nj3FSC6ezCkOoMWxww@mail.gmail.com>

On Thu, Oct 08, 2015 at 01:36:53PM -0400, Josh Boyer wrote:
> On Thu, Oct 1, 2015 at 1:44 PM, Luis R. Rodriguez
> <mcgrof@do-not-panic.com> wrote:
> > From: David Howells <dhowells@redhat.com>
> >
> > We'll want to reuse this same code later in order to
> > read two separate types of file contents. This generalizes
> > fw_read_file() for reading a file rebrands it as fw_read_file().
> 
> Er, maybe that should read "...fw_read_file_contents() for reading a
> file and rebrands it as fw_read_file()." ?

Thanks, corrected.

> > This caller lets us pegs arbitrary data onto the target
> > buffer and size if the file is found.
> 
> This sentence is somewhat confusing.  The data isn't arbitrary. It is
> what the caller wants you to read from path.  What is arbitrary, at
> least in the context of this function, is the path passed to it.
> Maybe rewrite this as:
> 
> "The new function allows us to read file contents from arbitrary paths
> and return the data and size of the files read."

The path is arbitrary but what I meant by arbitrary data is that
the data need no longer be firmware, whereas fw_read_file_contents()
*did* require passing firmware_class data structures. What this does
is it make the possibility of eventually making a more core system
data file reader more obvious, so for instance the goal is to later
share a reader with:

    - firmware_class: fw_read_file()
    - module: kernel_read()
    - kexec: copy_file_fd()

I will clarify this in the commit log and also clarify the path is
arbitrary as well as you note.

> > While at it this cleans up the exit paths on fw_read_file().
> >
> > Signed-off-by: David Howells <dhowells@redhat.com>
> > Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
> 
> The code changes themselves look fine.

Thank you for the review. Can I peg your Acked-by or Reviewed-by?
How about this for a change in the commit log:

firmware: generalize reading file contents as a helper                          
                                                                                
We'll want to reuse this same code later in order to read                       
two separate types of file contents. This generalizes                            
fw_read_file_contents() for reading a file and rebrands it                      
as fw_read_file(). This new caller is now generic and that                      
path can be arbitrary, the caller is also agnostic to the                       
firmware_class code now, which begs the possibility of code                     
re-use with other similar callers in the kernel. For instance                   
in the future we may want to share a solution with:                             
                                                                                
    - firmware_class: fw_read_file()                                            
    - module: kernel_read()                                                     
    - kexec: copy_file_fd()                                                     
                                                                                
While at it this also cleans up the exit paths on fw_read_file().               

  Luis

  reply	other threads:[~2015-10-08 22:54 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-01 17:44 [PATCH v2 0/5] firmware_class: extensible firmware API Luis R. Rodriguez
2015-10-01 17:44 ` [PATCH v2 1/5] firmware: generalize "firmware" as "system data" helpers Luis R. Rodriguez
2015-10-01 17:44 ` [PATCH v2 2/5] firmware: move completing fw into a helper Luis R. Rodriguez
2015-10-01 17:44 ` [PATCH v2 3/5] firmware: fold successful fw read early Luis R. Rodriguez
2015-10-01 17:44 ` [PATCH v2 4/5] firmware: generalize reading file contents as a helper Luis R. Rodriguez
2015-10-08 17:36   ` Josh Boyer
2015-10-08 22:54     ` Luis R. Rodriguez [this message]
2015-10-09 12:46       ` Josh Boyer
2015-10-09 15:46         ` Luis R. Rodriguez
2015-10-01 17:44 ` [PATCH v2 5/5] firmware: add an extensible system data helpers Luis R. Rodriguez
2015-10-08 17:59   ` Josh Boyer
2015-10-08 23:03     ` Luis R. Rodriguez

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20151008225437.GL14464@wotan.suse.de \
    --to=mcgrof@suse.com \
    --cc=corbet@lwn.net \
    --cc=dhowells@redhat.com \
    --cc=dwmw2@infradead.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jwboyer@fedoraproject.org \
    --cc=keyrings@linux-nfs.org \
    --cc=kyle@kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-security-module@vger.kernel.org \
    --cc=mcgrof@do-not-panic.com \
    --cc=ming.lei@canonical.com \
    --cc=mjg59@srcf.ucam.org \
    --cc=mmarek@suse.cz \
    --cc=rusty@rustcorp.com.au \
    --cc=seth.forshee@canonical.com \
    --cc=teg@jklm.no \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®