From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56295) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WlEM0-0001kx-92 for qemu-devel@nongnu.org; Fri, 16 May 2014 05:23:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WlELn-0004tO-0A for qemu-devel@nongnu.org; Fri, 16 May 2014 05:23:00 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56578) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WlELm-0004s3-NT for qemu-devel@nongnu.org; Fri, 16 May 2014 05:22:46 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s4G9MjiF022456 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Fri, 16 May 2014 05:22:46 -0400 From: Markus Armbruster Date: Fri, 16 May 2014 11:00:07 +0200 Message-Id: <1400230826-18009-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH v2 00/19] block: Purge qerror_report() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, stefanha@redhat.com qerror_report() is a transitional interface to help with converting existing HMP commands to QMP. It should not be used elsewhere. This series purges it from the block subsystem. It is based on Fam's "[PATCH v19 00/16] Drop in_use from BlockDriverState and enable point-in-time snapshot exporting over NBD". v2: * Trivial rebase * Fix error propagation in PATCH 04 [Eric] * More tasteful line breaks in PATCH 04 * Indentation cleanup in PATCH 10 [Eric] * Don't break sd_prealloc() in PATCH 14 [Eric] * Fix error propagation in PATCH 17 * New PATCH 18 to fix silent failures Markus Armbruster (19): blockdev: Don't use qerror_report_err() in drive_init() blockdev: Don't use qerror_report() in do_drive_del() qemu-nbd: Don't use qerror_report() block/rbd: Propagate errors to open and create methods block/ssh: Drop superfluous libssh2_session_last_errno() calls block/ssh: Propagate errors through check_host_key() block/ssh: Propagate errors through authenticate() block/ssh: Propagate errors through connect_to_ssh() block/ssh: Propagate errors to open and create methods block/vvfat: Propagate errors through enable_write_target() block/vvfat: Propagate errors through init_directories() block/sheepdog: Propagate errors through connect_to_sdog() block/sheepdog: Propagate errors through get_sheep_fd() block/sheepdog: Propagate errors through sd_prealloc() block/sheepdog: Propagate errors through do_sd_create() block/sheepdog: Propagate errors through find_vdi_name() block/sheepdog: Propagate errors to open and create methods block/sheepdog: Fix silent sd_open(), sd_create() failures block/sheepdog: Don't use qerror_report() block/rbd.c | 71 ++++++++++++++------------ block/sheepdog.c | 149 ++++++++++++++++++++++++++++++++++-------------------- block/ssh.c | 151 +++++++++++++++++++++++++++++++++---------------------- block/vvfat.c | 34 ++++++------- blockdev.c | 7 ++- qemu-nbd.c | 6 +-- 6 files changed, 246 insertions(+), 172 deletions(-) -- 1.8.1.4