From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39923) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoxJi-0003k7-9O for qemu-devel@nongnu.org; Sat, 09 Apr 2016 14:09:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aoxJf-0007GK-3w for qemu-devel@nongnu.org; Sat, 09 Apr 2016 14:09:06 -0400 Received: from e19.ny.us.ibm.com ([129.33.205.209]:49195) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoxJe-0007GC-V7 for qemu-devel@nongnu.org; Sat, 09 Apr 2016 14:09:03 -0400 Received: from localhost by e19.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Sat, 9 Apr 2016 14:09:01 -0400 References: <1459902110-9856-1-git-send-email-stefanb@us.ibm.com> From: Stefan Berger Message-ID: <57094539.6020203@linux.vnet.ibm.com> Date: Sat, 9 Apr 2016 14:08:57 -0400 MIME-Version: 1.0 In-Reply-To: <1459902110-9856-1-git-send-email-stefanb@us.ibm.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2] tpm: Fix write to file descriptor function List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Berger , qemu-trivial@nongnu.org, qemu-devel@nongnu.org, Peter Maydell , "Michael S. Tsirkin" On 04/05/2016 08:21 PM, Stefan Berger wrote: > Fix a bug introduced in commit 46f296c while moving send_all to the > tpm_passthrough code. Fix the name of the variable used in the loop. Would someone please pick up this fix? > Signed-off-by: Stefan Berger > --- > hw/tpm/tpm_passthrough.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/tpm/tpm_passthrough.c b/hw/tpm/tpm_passthrough.c > index e98efb7..e88c0d2 100644 > --- a/hw/tpm/tpm_passthrough.c > +++ b/hw/tpm/tpm_passthrough.c > @@ -86,7 +86,7 @@ static int tpm_passthrough_unix_write(int fd, const uint8_t *buf, uint32_t len) > int ret, remain; > > remain = len; > - while (len > 0) { > + while (remain > 0) { > ret = write(fd, buf, remain); > if (ret < 0) { > if (errno != EINTR && errno != EAGAIN) {