From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wm0-f47.google.com (mail-wm0-f47.google.com [74.125.82.47])
 by dpdk.org (Postfix) with ESMTP id EDACE91EF
 for <dev@dpdk.org>; Fri, 30 Oct 2015 15:49:58 +0100 (CET)
Received: by wmll128 with SMTP id l128so14129420wml.0
 for <dev@dpdk.org>; Fri, 30 Oct 2015 07:49:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=6wind_com.20150623.gappssmtp.com; s=20150623;
 h=from:to:cc:subject:date:message-id:organization:user-agent
 :in-reply-to:references:mime-version:content-transfer-encoding
 :content-type; bh=rTgNp9VPTh1clwdo7RHrS6RLh6jUkCz4+3wOkzZhb7M=;
 b=Ori2Gx5Sx/H7TaUpgQL4LU+zxM/u+DBKqQyG0O61k+oQQimxq7X4h/23cb27pVUHpK
 cX3tNf3DMcoqUP/xxgWCowHTrLtOTWu5sb0UY80NTGZLaR9bflFIce055+XQa+KWFOQi
 b6i0CY6JNnn14YJY/VfBR0G3G2S6aD+PHU8eauqKvr19V0xVRUHZV+hkY8jAowtZ9dfT
 EmGEqMwgZHvTESmNjEpF5itkHXSOtTEFDDNuBVUhlDBs23V3h1XjjoXcDaBVo/DVN8ig
 7m6+PGB5iamHfQPN+WdjNtD8TWgy+RbJmaEfMJAb+CQ8hsJLGCC15TiWGTTWfIbtahzz
 82Fw==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:from:to:cc:subject:date:message-id:organization
 :user-agent:in-reply-to:references:mime-version
 :content-transfer-encoding:content-type;
 bh=rTgNp9VPTh1clwdo7RHrS6RLh6jUkCz4+3wOkzZhb7M=;
 b=gFsnMivDEm8N9axaEqJHg2LTZixUqeiw/OWwFCcNvu9vC4OoYtpl/YUw7XI7yy9aYX
 iR2h3nzo3Va8dU8STu+YS5wKe/P7LrWT3bPcUN1HViYZlVvFgvl6L7tKjNNsZSLmgBOI
 +YYh020Zum35jbj/U3ld5B9/yf8YiM2bmJc0mLLP2QNe7+GpBhRdvkPxb3KshNtWLIuO
 DgWO4gxdBcAwoDsDsqp7EHC/IPq9lIl9D+GTb2s3PLzqnqE7hl0mjvXAI1PA75zcXOqv
 c8uiQDpOkD6LYgD6Psa0Rm6b9UScMyPJMiXvJjAB+ajFS4oMk2I/dsGOivW1FAOzZWHs
 v0mg==
X-Gm-Message-State: ALoCoQlsYSc4WNtzB4P3Y4VwHg1ffOJ8gGEmQgd9j8O1mVyUIadvRd0Eb5FBIa57s8t75ORQiT38
X-Received: by 10.28.88.143 with SMTP id m137mr3831782wmb.13.1446216598655;
 Fri, 30 Oct 2015 07:49:58 -0700 (PDT)
Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136])
 by smtp.gmail.com with ESMTPSA id gl4sm7395032wjd.49.2015.10.30.07.49.57
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Fri, 30 Oct 2015 07:49:58 -0700 (PDT)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: Tetsuya Mukawa <mukawa@igel.co.jp>
Date: Fri, 30 Oct 2015 15:48:47 +0100
Message-ID: <2017173.r9C03PBHlF@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; )
In-Reply-To: <20151029221821.GB22230@x240.home>
References: <1446004060-29198-1-git-send-email-mukawa@igel.co.jp>
 <20151029221821.GB22230@x240.home>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Cc: dev@dpdk.org, ann.zhuangyanying@huawei.com
Subject: Re: [dpdk-dev] [PATCH v3] vhost: Fix wrong handling of virtqueue
	array index
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Oct 2015 14:49:59 -0000

2015-10-29 20:18, Flavio Leitner:
> On Wed, Oct 28, 2015 at 12:47:40PM +0900, Tetsuya Mukawa wrote:
> > The patch fixes wrong handling of virtqueue array index when
> > GET_VRING_BASE message comes.
> > 
> > Signed-off-by: Tetsuya Mukawa <mukawa@igel.co.jp>
> > ---
> 
> vhost-user segfaults without this patch with MQ enabled.
> LGTM
> 
> Acked-by: Flavio Leitner <fbl@sysclose.org>

Applied, thanks

Note: the priority would have been different if the title was
	vhost: fix crash with multiqueue enabled
(as committed)