[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 1/9] error: add error_setg_file_open() helper
From: |
Luiz Capitulino |
Subject: |
[Qemu-devel] [PULL 1/9] error: add error_setg_file_open() helper |
Date: |
Mon, 17 Jun 2013 11:57:03 -0400 |
Signed-off-by: Luiz Capitulino <address@hidden>
Acked-by: Kevin Wolf <address@hidden>
---
include/qapi/error.h | 5 +++++
util/error.c | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/include/qapi/error.h b/include/qapi/error.h
index 5cd2f0c..ffd1cea 100644
--- a/include/qapi/error.h
+++ b/include/qapi/error.h
@@ -45,6 +45,11 @@ void error_set_errno(Error **err, int os_error, ErrorClass
err_class, const char
error_set_errno(err, os_error, ERROR_CLASS_GENERIC_ERROR, fmt, ##
__VA_ARGS__)
/**
+ * Helper for open() errors
+ */
+void error_setg_file_open(Error **errp, int os_errno, const char *filename);
+
+/**
* Returns true if an indirect pointer to an error is pointing to a valid
* error object.
*/
diff --git a/util/error.c b/util/error.c
index 519f6b6..53b0435 100644
--- a/util/error.c
+++ b/util/error.c
@@ -71,6 +71,11 @@ void error_set_errno(Error **errp, int os_errno, ErrorClass
err_class,
*errp = err;
}
+void error_setg_file_open(Error **errp, int os_errno, const char *filename)
+{
+ error_setg_errno(errp, os_errno, "Could not open '%s'", filename);
+}
+
Error *error_copy(const Error *err)
{
Error *err_new;
--
1.8.1.4
- [Qemu-devel] [PULL 0/9] QMP queue, Luiz Capitulino, 2013/06/17
- [Qemu-devel] [PULL 2/9] rng-random: use error_setg_file_open(), Luiz Capitulino, 2013/06/17
- [Qemu-devel] [PULL 3/9] block: mirror_complete(): use error_setg_file_open(), Luiz Capitulino, 2013/06/17
- [Qemu-devel] [PULL 4/9] blockdev: use error_setg_file_open(), Luiz Capitulino, 2013/06/17
- [Qemu-devel] [PULL 5/9] cpus: use error_setg_file_open(), Luiz Capitulino, 2013/06/17
- [Qemu-devel] [PULL 1/9] error: add error_setg_file_open() helper,
Luiz Capitulino <=
- [Qemu-devel] [PULL 6/9] dump: qmp_dump_guest_memory(): use error_setg_file_open(), Luiz Capitulino, 2013/06/17
- [Qemu-devel] [PULL 9/9] qerror: drop QERR_OPEN_FILE_FAILED macro, Luiz Capitulino, 2013/06/17
- [Qemu-devel] [PULL 8/9] block: bdrv_reopen_prepare(): don't use QERR_OPEN_FILE_FAILED, Luiz Capitulino, 2013/06/17
- [Qemu-devel] [PULL 7/9] savevm: qmp_xen_save_devices_state(): use error_setg_file_open(), Luiz Capitulino, 2013/06/17
- Re: [Qemu-devel] [PULL 0/9] QMP queue, Anthony Liguori, 2013/06/17