From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56704) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9k76-0001yJ-EP for qemu-devel@nongnu.org; Mon, 19 Mar 2012 17:27:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S9k74-0000qn-IN for qemu-devel@nongnu.org; Mon, 19 Mar 2012 17:27:36 -0400 Received: from isrv.corpit.ru ([86.62.121.231]:43425) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9k74-0000qX-B4 for qemu-devel@nongnu.org; Mon, 19 Mar 2012 17:27:34 -0400 Message-ID: <4F67A4C0.8010002@msgid.tls.msk.ru> Date: Tue, 20 Mar 2012 01:27:28 +0400 From: Michael Tokarev MIME-Version: 1.0 References: <1332192139-10217-1-git-send-email-mjt@msgid.tls.msk.ru> In-Reply-To: <1332192139-10217-1-git-send-email-mjt@msgid.tls.msk.ru> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCHv5 00/11] cleanup/consolidate iovec functions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Michael Tokarev Cc: qemu-devel@nongnu.org, Anthony Liguori I pushed it all to git://git.corpit.ru/qemu.git mjt-iov Note there was a bug in last change of unit-test (in the last patch), -- again because I had to rewrite it so much times: --- b/test-iov.c +++ a/test-iov.c @@ -223 +223 @@ static void test_io(void) - iov_memset(iov, niov, 0, j & 255, -1); + iov_memset(iov, niov, 0, 0xff, -1); it is correct in the git tree but wrong in the last patch (right value is 0xff, it is checked in other place to ensure no "other" bytes are touched). /mjt