1. 19 10月, 2015 2 次提交
  2. 09 10月, 2015 1 次提交
  3. 10 9月, 2015 1 次提交
  4. 24 6月, 2015 1 次提交
  5. 26 2月, 2015 1 次提交
  6. 18 2月, 2015 2 次提交
    • M
      monitor: Clean up around monitor_handle_fd_param() · 1677f4c6
      Markus Armbruster 提交于
      monitor_handle_fd_param() is a wrapper around
      monitor_handle_fd_param2() that feeds errors to qerror_report_err()
      instead of returning them.  qerror_report_err() is inappropriate in
      many contexts.  monitor_handle_fd_param() looks simpler than
      monitor_handle_fd_param2(), which tempts use.  Remove the temptation:
      drop the wrapper and open-code the (trivial) error handling instead.
      
      Replace the open-coded qerror_report_err() by error_report_err() in
      places that already use error_report().  Turns out that's everywhere.
      
      While there, rename monitor_handle_fd_param2() to monitor_fd_param().
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      Reviewed-by: NEric Blake <eblake@redhat.com>
      1677f4c6
    • M
      error: Use error_report_err() where appropriate · 565f65d2
      Markus Armbruster 提交于
      Coccinelle semantic patch:
      
          @@
          expression E;
          @@
          -    error_report("%s", error_get_pretty(E));
          -    error_free(E);
          +    error_report_err(E);
          @@
          expression E, S;
          @@
          -    error_report("%s", error_get_pretty(E));
          +    error_report_err(E);
          (
               exit(S);
          |
               abort();
          )
      
      Trivial manual touch-ups in block/sheepdog.c.
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      Reviewed-by: NEric Blake <eblake@redhat.com>
      565f65d2
  7. 15 10月, 2014 2 次提交
  8. 09 9月, 2014 1 次提交
  9. 18 8月, 2014 1 次提交
  10. 13 5月, 2014 2 次提交
  11. 09 5月, 2014 13 次提交
  12. 27 2月, 2014 1 次提交
  13. 13 11月, 2013 1 次提交
  14. 07 11月, 2013 1 次提交
  15. 23 8月, 2013 1 次提交
  16. 29 7月, 2013 1 次提交
  17. 04 7月, 2013 2 次提交
  18. 03 7月, 2013 1 次提交
  19. 22 6月, 2013 1 次提交
  20. 22 5月, 2013 1 次提交
  21. 09 4月, 2013 2 次提交
  22. 11 2月, 2013 1 次提交