From patchwork Wed Nov 21 05:51:21 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Shah X-Patchwork-Id: 200585 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id BB53A2C00BE for ; Wed, 21 Nov 2012 16:52:09 +1100 (EST) Received: from localhost ([::1]:57639 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tb3EF-0000rf-Hb for incoming@patchwork.ozlabs.org; Wed, 21 Nov 2012 00:52:07 -0500 Received: from eggs.gnu.org ([208.118.235.92]:39262) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tb3Du-0000dM-V5 for qemu-devel@nongnu.org; Wed, 21 Nov 2012 00:51:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tb3Dt-0000be-Qr for qemu-devel@nongnu.org; Wed, 21 Nov 2012 00:51:46 -0500 Received: from mx1.redhat.com ([209.132.183.28]:43821) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tb3Dt-0000ap-H3 for qemu-devel@nongnu.org; Wed, 21 Nov 2012 00:51:45 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qAL5ph7X015159 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 21 Nov 2012 00:51:44 -0500 Received: from localhost (ovpn-113-49.phx2.redhat.com [10.3.113.49]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id qAL5pfNW011796; Wed, 21 Nov 2012 00:51:43 -0500 From: Amit Shah To: Anthony Liguori Date: Wed, 21 Nov 2012 11:21:21 +0530 Message-Id: <93583eaee3fbbcbc7393c01d1b7706009b2a1145.1353475962.git.amit.shah@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Amit Shah , Paolo Bonzini , qemu list Subject: [Qemu-devel] [PATCH v2 4/4] virtio-rng: fix typos, comments X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Fix typos, whitespace and update comments to match current implementation. Signed-off-by: Amit Shah --- hw/virtio-rng.c | 7 +++---- include/qemu/rng.h | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/hw/virtio-rng.c b/hw/virtio-rng.c index c8a6da7..f4ed9cf 100644 --- a/hw/virtio-rng.c +++ b/hw/virtio-rng.c @@ -23,7 +23,6 @@ typedef struct VirtIORNG { /* Only one vq - guest puts buffer(s) on it when it needs entropy */ VirtQueue *vq; - /* Config data for the device -- currently only chardev */ VirtIORNGConf *conf; RngBackend *rng; @@ -125,9 +124,9 @@ static int virtio_rng_load(QEMUFile *f, void *opaque, int version_id) virtio_load(&vrng->vdev, f); /* We may have an element ready but couldn't process it due to a quota - limit. Make sure to try again after live migration when the quota may - have been reset. - */ + * limit. Make sure to try again after live migration when the quota may + * have been reset. + */ virtio_rng_process(vrng); return 0; diff --git a/include/qemu/rng.h b/include/qemu/rng.h index 7e9d672..d094bf8 100644 --- a/include/qemu/rng.h +++ b/include/qemu/rng.h @@ -61,10 +61,10 @@ struct RngBackend * This function is used by the front-end to request entropy from an entropy * source. This function can be called multiple times before @receive_entropy * is invoked with different values of @receive_entropy and @opaque. The - * backend will queue each request and handle appropriate. + * backend will queue each request and handle appropriately. * * The backend does not need to pass the full amount of data to @receive_entropy - * but will pass at a value greater than 0. + * but will pass a value greater than 0. */ void rng_backend_request_entropy(RngBackend *s, size_t size, EntropyReceiveFunc *receive_entropy, @@ -87,7 +87,7 @@ void rng_backend_cancel_requests(RngBackend *s); * * This function will open the backend if it is not already open. Calling this * function on an already opened backend will not result in an error. - */ + */ void rng_backend_open(RngBackend *s, Error **errp); #endif