From: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
To: gregkh@linuxfoundation.org, ming.lei@canonical.com
Cc: corbet@lwn.net, linux-kernel@vger.kernel.org,
linux-doc@vger.kernel.org, dwmw2@infradead.org,
dhowells@redhat.com, seth.forshee@canonical.com,
rusty@rustcorp.com.au, mmarek@suse.cz, mjg59@srcf.ucam.org,
kyle@kernel.org, linux-security-module@vger.kernel.org,
keyrings@linux-nfs.org, mcgrof@suse.com,
jwboyer@fedoraproject.org, teg@jklm.no
Subject: [PATCH v2 3/5] firmware: fold successful fw read early
Date: Thu, 1 Oct 2015 10:44:07 -0700 [thread overview]
Message-ID: <1443721449-22882-4-git-send-email-mcgrof@do-not-panic.com> (raw)
In-Reply-To: <1443721449-22882-1-git-send-email-mcgrof@do-not-panic.com>
From: David Howells <dhowells@redhat.com>
We'll be folding in some more checks on fw_read_file_contents(),
this will make the success case easier to follow.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
---
drivers/base/firmware_class.c | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/drivers/base/firmware_class.c b/drivers/base/firmware_class.c
index d8148aa89b01..e10a5349aa61 100644
--- a/drivers/base/firmware_class.c
+++ b/drivers/base/firmware_class.c
@@ -361,20 +361,18 @@ static int fw_get_filesystem_firmware(struct device *device,
continue;
rc = fw_read_file_contents(file, buf);
fput(file);
- if (rc)
+ if (rc == 0) {
+ dev_dbg(device, "system data: direct-loading firmware %s\n",
+ buf->fw_id);
+ fw_finish_direct_load(device, buf);
+ goto out;
+ } else
dev_warn(device, "system data, attempted to load %s, but failed with error %d\n",
path, rc);
- else
- break;
}
+out:
__putname(path);
- if (!rc) {
- dev_dbg(device, "system data: direct-loading firmware %s\n",
- buf->fw_id);
- fw_finish_direct_load(device, buf);
- }
-
return rc;
}
--
2.4.3
next prev parent reply other threads:[~2015-10-01 17:53 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 ` Luis R. Rodriguez [this message]
2015-10-01 17:44 ` [PATCH v2 4/5] firmware: generalize reading file contents as " Luis R. Rodriguez
2015-10-08 17:36 ` Josh Boyer
2015-10-08 22:54 ` Luis R. Rodriguez
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=1443721449-22882-4-git-send-email-mcgrof@do-not-panic.com \
--to=mcgrof@do-not-panic.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@suse.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®