From patchwork Wed Mar 9 17:15:50 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mohan Kumar M X-Patchwork-Id: 86139 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 92C01B6F2B for ; Thu, 10 Mar 2011 04:38:59 +1100 (EST) Received: from localhost ([127.0.0.1]:48691 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PxNLc-0006m0-Pa for incoming@patchwork.ozlabs.org; Wed, 09 Mar 2011 12:38:56 -0500 Received: from [140.186.70.92] (port=47665 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PxN9G-0001mM-HZ for qemu-devel@nongnu.org; Wed, 09 Mar 2011 12:26:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PxN1D-0005jM-Ij for qemu-devel@nongnu.org; Wed, 09 Mar 2011 12:17:52 -0500 Received: from e28smtp08.in.ibm.com ([122.248.162.8]:57374) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PxN1C-0005iW-Sy for qemu-devel@nongnu.org; Wed, 09 Mar 2011 12:17:51 -0500 Received: from d28relay01.in.ibm.com (d28relay01.in.ibm.com [9.184.220.58]) by e28smtp08.in.ibm.com (8.14.4/8.13.1) with ESMTP id p29GOQch006187 for ; Wed, 9 Mar 2011 21:54:26 +0530 Received: from d28av01.in.ibm.com (d28av01.in.ibm.com [9.184.220.63]) by d28relay01.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p29HHmjk4440122 for ; Wed, 9 Mar 2011 22:47:48 +0530 Received: from d28av01.in.ibm.com (loopback [127.0.0.1]) by d28av01.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p29HG5Rj020152 for ; Wed, 9 Mar 2011 22:46:05 +0530 Received: from explorer.in.ibm.com ([9.124.208.3]) by d28av01.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p29HG4w6020116; Wed, 9 Mar 2011 22:46:04 +0530 From: "M. Mohan Kumar" To: qemu-devel@nongnu.org, Stefan Hajnoczi Date: Wed, 9 Mar 2011 22:45:50 +0530 Message-Id: <1299690960-12007-2-git-send-email-mohan@in.ibm.com> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1299690960-12007-1-git-send-email-mohan@in.ibm.com> References: <1299690960-12007-1-git-send-email-mohan@in.ibm.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 122.248.162.8 Cc: Subject: [Qemu-devel] [V8 PATCH 01/11] Implement qemu_read_full X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Add qemu_read_full function Signed-off-by: M. Mohan Kumar --- osdep.c | 32 ++++++++++++++++++++++++++++++++ qemu-common.h | 2 ++ 2 files changed, 34 insertions(+), 0 deletions(-) diff --git a/osdep.c b/osdep.c index 327583b..8d84a88 100644 --- a/osdep.c +++ b/osdep.c @@ -127,6 +127,38 @@ ssize_t qemu_write_full(int fd, const void *buf, size_t count) } /* + * A variant of read(2) which handles interrupted read. + * Simlar to qemu_write_full function + * + * Return the number of bytes read. + * + * This function does not work with non-blocking fd's. + * errno is set if fewer than `count' bytes are read because of any + * error + */ +ssize_t qemu_read_full(int fd, void *buf, size_t count) +{ + ssize_t ret = 0; + ssize_t total = 0; + + while (count) { + ret = read(fd, buf, count); + if (ret <= 0) { + if (errno == EINTR) { + continue; + } + break; + } + + count -= ret; + buf += ret; + total += ret; + } + + return total; +} + +/* * Opens a socket with FD_CLOEXEC set */ int qemu_socket(int domain, int type, int protocol) diff --git a/qemu-common.h b/qemu-common.h index 40dad52..325b16a 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -207,6 +207,8 @@ void qemu_mutex_unlock_iothread(void); int qemu_open(const char *name, int flags, ...); ssize_t qemu_write_full(int fd, const void *buf, size_t count) QEMU_WARN_UNUSED_RESULT; +ssize_t qemu_read_full(int fd, void *buf, size_t count) + QEMU_WARN_UNUSED_RESULT; void qemu_set_cloexec(int fd); #ifndef _WIN32