/openbmc/qemu/hw/arm/ |
H A D | digic_boards.c | diff c29b77f955ff2f7b57c1e71e9dc26243eefd0b28 Fri Dec 18 09:35:14 CST 2015 Markus Armbruster <armbru@redhat.com> error: Use error_reportf_err() where it makes obvious sense
Done with this Coccinelle semantic patch
@@ expression FMT, E, S; expression list ARGS; @@ - error_report(FMT, ARGS, error_get_pretty(E)); + error_reportf_err(E, FMT/*@@@*/, ARGS); ( - error_free(E); | exit(S); | abort(); )
followed by a replace of '%s"/*@@@*/' by '"' and some line rewrapping, because I can't figure out how to make Coccinelle transform strings.
We now use the error whole instead of just its message obtained with error_get_pretty(). This avoids suppressing its hint (see commit 50b7b00), but I can't see how the errors touched in this commit could come with hints.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1450452927-8346-12-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
|
H A D | cubieboard.c | diff c29b77f955ff2f7b57c1e71e9dc26243eefd0b28 Fri Dec 18 09:35:14 CST 2015 Markus Armbruster <armbru@redhat.com> error: Use error_reportf_err() where it makes obvious sense
Done with this Coccinelle semantic patch
@@ expression FMT, E, S; expression list ARGS; @@ - error_report(FMT, ARGS, error_get_pretty(E)); + error_reportf_err(E, FMT/*@@@*/, ARGS); ( - error_free(E); | exit(S); | abort(); )
followed by a replace of '%s"/*@@@*/' by '"' and some line rewrapping, because I can't figure out how to make Coccinelle transform strings.
We now use the error whole instead of just its message obtained with error_get_pretty(). This avoids suppressing its hint (see commit 50b7b00), but I can't see how the errors touched in this commit could come with hints.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1450452927-8346-12-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
|
/openbmc/qemu/replay/ |
H A D | replay.c | diff c29b77f955ff2f7b57c1e71e9dc26243eefd0b28 Fri Dec 18 09:35:14 CST 2015 Markus Armbruster <armbru@redhat.com> error: Use error_reportf_err() where it makes obvious sense
Done with this Coccinelle semantic patch
@@ expression FMT, E, S; expression list ARGS; @@ - error_report(FMT, ARGS, error_get_pretty(E)); + error_reportf_err(E, FMT/*@@@*/, ARGS); ( - error_free(E); | exit(S); | abort(); )
followed by a replace of '%s"/*@@@*/' by '"' and some line rewrapping, because I can't figure out how to make Coccinelle transform strings.
We now use the error whole instead of just its message obtained with error_get_pretty(). This avoids suppressing its hint (see commit 50b7b00), but I can't see how the errors touched in this commit could come with hints.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1450452927-8346-12-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
|
/openbmc/qemu/hw/usb/ |
H A D | bus.c | diff c29b77f955ff2f7b57c1e71e9dc26243eefd0b28 Fri Dec 18 09:35:14 CST 2015 Markus Armbruster <armbru@redhat.com> error: Use error_reportf_err() where it makes obvious sense
Done with this Coccinelle semantic patch
@@ expression FMT, E, S; expression list ARGS; @@ - error_report(FMT, ARGS, error_get_pretty(E)); + error_reportf_err(E, FMT/*@@@*/, ARGS); ( - error_free(E); | exit(S); | abort(); )
followed by a replace of '%s"/*@@@*/' by '"' and some line rewrapping, because I can't figure out how to make Coccinelle transform strings.
We now use the error whole instead of just its message obtained with error_get_pretty(). This avoids suppressing its hint (see commit 50b7b00), but I can't see how the errors touched in this commit could come with hints.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1450452927-8346-12-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
|
/openbmc/qemu/hw/core/ |
H A D | qdev-properties.c | diff c29b77f955ff2f7b57c1e71e9dc26243eefd0b28 Fri Dec 18 09:35:14 CST 2015 Markus Armbruster <armbru@redhat.com> error: Use error_reportf_err() where it makes obvious sense
Done with this Coccinelle semantic patch
@@ expression FMT, E, S; expression list ARGS; @@ - error_report(FMT, ARGS, error_get_pretty(E)); + error_reportf_err(E, FMT/*@@@*/, ARGS); ( - error_free(E); | exit(S); | abort(); )
followed by a replace of '%s"/*@@@*/' by '"' and some line rewrapping, because I can't figure out how to make Coccinelle transform strings.
We now use the error whole instead of just its message obtained with error_get_pretty(). This avoids suppressing its hint (see commit 50b7b00), but I can't see how the errors touched in this commit could come with hints.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1450452927-8346-12-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
|
H A D | qdev.c | diff c29b77f955ff2f7b57c1e71e9dc26243eefd0b28 Fri Dec 18 09:35:14 CST 2015 Markus Armbruster <armbru@redhat.com> error: Use error_reportf_err() where it makes obvious sense
Done with this Coccinelle semantic patch
@@ expression FMT, E, S; expression list ARGS; @@ - error_report(FMT, ARGS, error_get_pretty(E)); + error_reportf_err(E, FMT/*@@@*/, ARGS); ( - error_free(E); | exit(S); | abort(); )
followed by a replace of '%s"/*@@@*/' by '"' and some line rewrapping, because I can't figure out how to make Coccinelle transform strings.
We now use the error whole instead of just its message obtained with error_get_pretty(). This avoids suppressing its hint (see commit 50b7b00), but I can't see how the errors touched in this commit could come with hints.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1450452927-8346-12-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
|
/openbmc/qemu/hw/ppc/ |
H A D | e500.c | diff c29b77f955ff2f7b57c1e71e9dc26243eefd0b28 Fri Dec 18 09:35:14 CST 2015 Markus Armbruster <armbru@redhat.com> error: Use error_reportf_err() where it makes obvious sense
Done with this Coccinelle semantic patch
@@ expression FMT, E, S; expression list ARGS; @@ - error_report(FMT, ARGS, error_get_pretty(E)); + error_reportf_err(E, FMT/*@@@*/, ARGS); ( - error_free(E); | exit(S); | abort(); )
followed by a replace of '%s"/*@@@*/' by '"' and some line rewrapping, because I can't figure out how to make Coccinelle transform strings.
We now use the error whole instead of just its message obtained with error_get_pretty(). This avoids suppressing its hint (see commit 50b7b00), but I can't see how the errors touched in this commit could come with hints.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1450452927-8346-12-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
|
/openbmc/qemu/ |
H A D | qemu-nbd.c | diff c29b77f955ff2f7b57c1e71e9dc26243eefd0b28 Fri Dec 18 09:35:14 CST 2015 Markus Armbruster <armbru@redhat.com> error: Use error_reportf_err() where it makes obvious sense
Done with this Coccinelle semantic patch
@@ expression FMT, E, S; expression list ARGS; @@ - error_report(FMT, ARGS, error_get_pretty(E)); + error_reportf_err(E, FMT/*@@@*/, ARGS); ( - error_free(E); | exit(S); | abort(); )
followed by a replace of '%s"/*@@@*/' by '"' and some line rewrapping, because I can't figure out how to make Coccinelle transform strings.
We now use the error whole instead of just its message obtained with error_get_pretty(). This avoids suppressing its hint (see commit 50b7b00), but I can't see how the errors touched in this commit could come with hints.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1450452927-8346-12-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
|
H A D | qemu-img.c | diff c29b77f955ff2f7b57c1e71e9dc26243eefd0b28 Fri Dec 18 09:35:14 CST 2015 Markus Armbruster <armbru@redhat.com> error: Use error_reportf_err() where it makes obvious sense
Done with this Coccinelle semantic patch
@@ expression FMT, E, S; expression list ARGS; @@ - error_report(FMT, ARGS, error_get_pretty(E)); + error_reportf_err(E, FMT/*@@@*/, ARGS); ( - error_free(E); | exit(S); | abort(); )
followed by a replace of '%s"/*@@@*/' by '"' and some line rewrapping, because I can't figure out how to make Coccinelle transform strings.
We now use the error whole instead of just its message obtained with error_get_pretty(). This avoids suppressing its hint (see commit 50b7b00), but I can't see how the errors touched in this commit could come with hints.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1450452927-8346-12-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
|
H A D | blockdev.c | diff c29b77f955ff2f7b57c1e71e9dc26243eefd0b28 Fri Dec 18 09:35:14 CST 2015 Markus Armbruster <armbru@redhat.com> error: Use error_reportf_err() where it makes obvious sense
Done with this Coccinelle semantic patch
@@ expression FMT, E, S; expression list ARGS; @@ - error_report(FMT, ARGS, error_get_pretty(E)); + error_reportf_err(E, FMT/*@@@*/, ARGS); ( - error_free(E); | exit(S); | abort(); )
followed by a replace of '%s"/*@@@*/' by '"' and some line rewrapping, because I can't figure out how to make Coccinelle transform strings.
We now use the error whole instead of just its message obtained with error_get_pretty(). This avoids suppressing its hint (see commit 50b7b00), but I can't see how the errors touched in this commit could come with hints.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1450452927-8346-12-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
|
/openbmc/qemu/ui/ |
H A D | vnc.c | diff c29b77f955ff2f7b57c1e71e9dc26243eefd0b28 Fri Dec 18 09:35:14 CST 2015 Markus Armbruster <armbru@redhat.com> error: Use error_reportf_err() where it makes obvious sense
Done with this Coccinelle semantic patch
@@ expression FMT, E, S; expression list ARGS; @@ - error_report(FMT, ARGS, error_get_pretty(E)); + error_reportf_err(E, FMT/*@@@*/, ARGS); ( - error_free(E); | exit(S); | abort(); )
followed by a replace of '%s"/*@@@*/' by '"' and some line rewrapping, because I can't figure out how to make Coccinelle transform strings.
We now use the error whole instead of just its message obtained with error_get_pretty(). This avoids suppressing its hint (see commit 50b7b00), but I can't see how the errors touched in this commit could come with hints.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1450452927-8346-12-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
|
/openbmc/qemu/hw/i386/ |
H A D | pc.c | diff c29b77f955ff2f7b57c1e71e9dc26243eefd0b28 Fri Dec 18 09:35:14 CST 2015 Markus Armbruster <armbru@redhat.com> error: Use error_reportf_err() where it makes obvious sense
Done with this Coccinelle semantic patch
@@ expression FMT, E, S; expression list ARGS; @@ - error_report(FMT, ARGS, error_get_pretty(E)); + error_reportf_err(E, FMT/*@@@*/, ARGS); ( - error_free(E); | exit(S); | abort(); )
followed by a replace of '%s"/*@@@*/' by '"' and some line rewrapping, because I can't figure out how to make Coccinelle transform strings.
We now use the error whole instead of just its message obtained with error_get_pretty(). This avoids suppressing its hint (see commit 50b7b00), but I can't see how the errors touched in this commit could come with hints.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1450452927-8346-12-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
|