From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40321) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPVIG-0005S5-9U for qemu-devel@nongnu.org; Tue, 09 Apr 2013 05:56:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UPVIB-0006cw-0B for qemu-devel@nongnu.org; Tue, 09 Apr 2013 05:56:48 -0400 Received: from mx1.redhat.com ([209.132.183.28]:25800) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPVIA-0006cf-Mq for qemu-devel@nongnu.org; Tue, 09 Apr 2013 05:56:42 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r399ufth029842 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 9 Apr 2013 05:56:41 -0400 Received: from choo.home.annexia.org (vpn1-7-80.ams2.redhat.com [10.36.7.80]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r399ueK9022495 for ; Tue, 9 Apr 2013 05:56:41 -0400 From: "Richard W.M. Jones" Date: Tue, 9 Apr 2013 10:56:30 +0100 Message-Id: <1365501393-5010-1-git-send-email-rjones@redhat.com> Subject: [Qemu-devel] [PATCH v8 0/3] block: Add support for Secure Shell (ssh) block device. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Changes since v7: - fsync (ie. bdrv_co_flush_to_disk) is now supported, *if* you have the following patches to libssh2 and OpenSSH: https://bugzilla.mindrot.org/show_bug.cgi?id=1798 (OpenSSH: accepted, but not upstream) http://www.libssh2.org/mail/libssh2-devel-archive-2013-04/0006.shtml (libssh2: posted) I tested 3 combinations (without libssh2 patch; with libssh2 patch and without OpenSSH support; with libssh2 patch and with OpenSSH support), and all work. Rich.