From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39265) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQGIX-000107-Q5 for qemu-devel@nongnu.org; Wed, 19 Mar 2014 09:12:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WQGIS-0003iz-CN for qemu-devel@nongnu.org; Wed, 19 Mar 2014 09:12:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50605) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQGIS-0003ii-4s for qemu-devel@nongnu.org; Wed, 19 Mar 2014 09:12:40 -0400 From: Kevin Wolf Date: Wed, 19 Mar 2014 14:12:05 +0100 Message-Id: <1395234727-6841-7-git-send-email-kwolf@redhat.com> In-Reply-To: <1395234727-6841-1-git-send-email-kwolf@redhat.com> References: <1395234727-6841-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PULL 6/8] block/nfs: bump libnfs requirement to 1.9.3 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, peter.maydell@linaro.org, anthony@codemonkey.ws From: Peter Lieven libnfs prior to 1.9.3 contains a bug that will report wrong transfer sizes if the file offset grows beyond 4GB and RPC responses are received out of order. this error is not detectable and fixable in qemu. additionally 1.9.3 introduces support for handling short read/writes in general and takes care of the necessary retransmissions internally. Signed-off-by: Peter Lieven Signed-off-by: Kevin Wolf --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 2bc6b77..aae617e 100755 --- a/configure +++ b/configure @@ -3868,7 +3868,7 @@ fi ########################################## # Do we have libnfs if test "$libnfs" != "no" ; then - if $pkg_config --atleast-version=1.9.2 libnfs; then + if $pkg_config --atleast-version=1.9.3 libnfs; then libnfs="yes" libnfs_libs=$($pkg_config --libs libnfs) LIBS="$LIBS $libnfs_libs" -- 1.8.3.1