From patchwork Sun Mar 1 07:39:14 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 444706 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id AB6341400F1 for ; Sun, 1 Mar 2015 18:41:29 +1100 (AEDT) Received: from localhost ([::1]:44489 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRyVD-00041V-Lw for incoming@patchwork.ozlabs.org; Sun, 01 Mar 2015 02:41:27 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42058) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRyTH-0001g6-Mm for qemu-devel@nongnu.org; Sun, 01 Mar 2015 02:39:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YRyTA-0002yd-5d for qemu-devel@nongnu.org; Sun, 01 Mar 2015 02:39:27 -0500 Received: from mail.kernel.org ([198.145.29.136]:46878) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRyT9-0002yZ-W5 for qemu-devel@nongnu.org; Sun, 01 Mar 2015 02:39:20 -0500 Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 0D5D1203E3; Sun, 1 Mar 2015 07:39:19 +0000 (UTC) Received: from redhat.com (bzq-79-181-154-135.red.bezeqint.net [79.181.154.135]) (using TLSv1.2 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 428D0203DF; Sun, 1 Mar 2015 07:39:17 +0000 (UTC) Date: Sun, 1 Mar 2015 08:39:14 +0100 From: "Michael S. Tsirkin" To: linux-kernel@vger.kernel.org, Rusty Russell , virtualization@lists.linux-foundation.org, qemu-devel@nongnu.org Message-ID: <1425192883-5930-2-git-send-email-mst@redhat.com> References: <1425192883-5930-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1425192883-5930-1-git-send-email-mst@redhat.com> X-Mailer: git-send-email 2.0.0.545.gd9cabeb X-Mutt-Fcc: =sent X-Virus-Scanned: ClamAV using ClamSMTP X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 198.145.29.136 Subject: [Qemu-devel] [PATCH 1/2] virtio_blk: typo fix 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 Now that QEmu reuses linux virtio headers, we noticed a typo in the exported virtio block header. Fix it up. Signed-off-by: Michael S. Tsirkin --- include/uapi/linux/virtio_blk.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uapi/linux/virtio_blk.h b/include/uapi/linux/virtio_blk.h index 3c53eec..b695ba9 100644 --- a/include/uapi/linux/virtio_blk.h +++ b/include/uapi/linux/virtio_blk.h @@ -60,7 +60,7 @@ struct virtio_blk_config { __u32 size_max; /* The maximum number of segments (if VIRTIO_BLK_F_SEG_MAX) */ __u32 seg_max; - /* geometry the device (if VIRTIO_BLK_F_GEOMETRY) */ + /* geometry of the device (if VIRTIO_BLK_F_GEOMETRY) */ struct virtio_blk_geometry { __u16 cylinders; __u8 heads;