Message ID | 20211129181705.439056755@linuxfoundation.org |
---|---|
State | Superseded |
Headers | show
Return-Path: <stable-owner@kernel.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7FA1DC433F5 for <stable@archiver.kernel.org>; Mon, 29 Nov 2021 18:24:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1351005AbhK2S1u (ORCPT <rfc822;stable@archiver.kernel.org>); Mon, 29 Nov 2021 13:27:50 -0500 Received: from ams.source.kernel.org ([145.40.68.75]:59248 "EHLO ams.source.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1346078AbhK2SZk (ORCPT <rfc822;stable@vger.kernel.org>); Mon, 29 Nov 2021 13:25:40 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 1F1E4B815D4; Mon, 29 Nov 2021 18:22:21 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 45DB7C53FAD; Mon, 29 Nov 2021 18:22:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1638210139; bh=bKAsRjF+JikFD9Qj7QDah99nUuOwa5+mgcrhtMO5eG8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=MhgKQbTO1xzXh3pnnXemSQkQrXqDrv97Xi2kch2j4DSVCr810lk5hkhkOG1ONkhVY 2Nvi2rvc+oinWVWsVy0l+HRMYam8/zYJdHX+xipcZLL4heSPrR5Uu7jIjeI9X7FZn1 cFeMBeZB7/xkC2Zxe1JHFbZzY42DV0aPP5xOXnY4= From: Greg Kroah-Hartman <gregkh@linuxfoundation.org> To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>, stable@vger.kernel.org, Halil Pasic <pasic@linux.ibm.com>, Jason Wang <jasowang@redhat.com>, Stefano Garzarella <sgarzare@redhat.com>, "Michael S. Tsirkin" <mst@redhat.com>, Stefan Hajnoczi <stefanha@redhat.com> Subject: [PATCH 4.19 55/69] vhost/vsock: fix incorrect used length reported to the guest Date: Mon, 29 Nov 2021 19:18:37 +0100 Message-Id: <20211129181705.439056755@linuxfoundation.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20211129181703.670197996@linuxfoundation.org> References: <20211129181703.670197996@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: <stable.vger.kernel.org> X-Mailing-List: stable@vger.kernel.org |
Series |
None
|
expand
|
--- a/drivers/vhost/vsock.c +++ b/drivers/vhost/vsock.c @@ -490,7 +490,7 @@ static void vhost_vsock_handle_tx_kick(s virtio_transport_free_pkt(pkt); len += sizeof(pkt->hdr); - vhost_add_used(vq, head, len); + vhost_add_used(vq, head, 0); total_len += len; added = true; } while(likely(!vhost_exceeds_weight(vq, ++pkts, total_len)));