From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:55535) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwbTf-0001lI-0i for qemu-devel@nongnu.org; Thu, 25 Aug 2011 11:04:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwbTa-0001xO-77 for qemu-devel@nongnu.org; Thu, 25 Aug 2011 11:04:18 -0400 Received: from e23smtp04.au.ibm.com ([202.81.31.146]:35493) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwbTZ-0001x5-LA for qemu-devel@nongnu.org; Thu, 25 Aug 2011 11:04:14 -0400 Received: from d23relay03.au.ibm.com (d23relay03.au.ibm.com [202.81.31.245]) by e23smtp04.au.ibm.com (8.14.4/8.13.1) with ESMTP id p7PEvdms016965 for ; Fri, 26 Aug 2011 00:57:39 +1000 Received: from d23av02.au.ibm.com (d23av02.au.ibm.com [9.190.235.138]) by d23relay03.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p7PF49Bi1679494 for ; Fri, 26 Aug 2011 01:04:09 +1000 Received: from d23av02.au.ibm.com (loopback [127.0.0.1]) by d23av02.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p7PF48tr004536 for ; Fri, 26 Aug 2011 01:04:09 +1000 From: "Aneesh Kumar K.V" Date: Thu, 25 Aug 2011 20:33:41 +0530 Message-Id: <1314284624-14821-4-git-send-email-aneesh.kumar@linux.vnet.ibm.com> In-Reply-To: <1314284624-14821-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> References: <1314284624-14821-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 3/6] hw/9pfs: init fid list properly List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, "Aneesh Kumar K.V" Signed-off-by: Aneesh Kumar K.V --- hw/9pfs/virtio-9p-device.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c index 44b9ace..97f2da5 100644 --- a/hw/9pfs/virtio-9p-device.c +++ b/hw/9pfs/virtio-9p-device.c @@ -130,6 +130,7 @@ VirtIODevice *virtio_9p_init(DeviceState *dev, V9fsConf *conf) s->config_size = sizeof(struct virtio_9p_config) + s->tag_len; s->vdev.get_config = virtio_9p_get_config; + s->fid_list = NULL; if (v9fs_init_worker_threads() < 0) { fprintf(stderr, "worker thread initialization failed\n"); -- 1.7.4.1