From mboxrd@z Thu Jan 1 00:00:00 1970 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 Date: Sun, 1 Mar 2015 08:39:14 +0100 From: "Michael S. Tsirkin" 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-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1425192883-5930-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PATCH 1/2] virtio_blk: typo fix List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: linux-kernel@vger.kernel.org, Rusty Russell , virtualization@lists.linux-foundation.org, qemu-devel@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; -- MST