From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B2583C10F12 for ; Mon, 15 Apr 2019 19:13:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7F6B7218A1 for ; Mon, 15 Apr 2019 19:13:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555355606; bh=Tso14aktCvzEAyAtvzW+hNWWASU0F9D9ziRTP9nvr04=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=RltKaTP4tF4waRlBcaGCmsXlVGEmp1XM9EJVqvxlg2GDFUGCb1AgLEhrSTKaGxRRj 6oQumwJIB6bT1KazCLqAORYJ4azvTQslqLSuBs8o1SX41Z7SmEWoKDPR8QqvFRMg/A g9IuM68WmVYk8of2HwJ/9XDIVFdxn3XDoGTd8h5c= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731557AbfDOTNZ (ORCPT ); Mon, 15 Apr 2019 15:13:25 -0400 Received: from mail.kernel.org ([198.145.29.99]:51062 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728252AbfDOTNW (ORCPT ); Mon, 15 Apr 2019 15:13:22 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 75304218A1; Mon, 15 Apr 2019 19:13:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555355601; bh=Tso14aktCvzEAyAtvzW+hNWWASU0F9D9ziRTP9nvr04=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=zPBKiiyPJexKIbmW+fJrCEZl/6q4Owf9MhepUk42Qx4PiVjHuILfaoTrKLLwEOsHg zPLCuewgGllKXDkYIPfvL3S4J9GexM8t9EsIWfcWBVTFq0B1U3KVxsffhl8nOA8sHL zhuC100yRqWQlFzqDPa0GrugQOaTLFPrYJiiwpD0= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Cornelia Huck , "Michael S. Tsirkin" , Halil Pasic , Jens Freimann Subject: [PATCH 5.0 083/117] virtio: Honour may_reduce_num in vring_create_virtqueue Date: Mon, 15 Apr 2019 21:00:53 +0200 Message-Id: <20190415183749.151380779@linuxfoundation.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190415183744.887851196@linuxfoundation.org> References: <20190415183744.887851196@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Cornelia Huck commit cf94db21905333e610e479688add629397a4b384 upstream. vring_create_virtqueue() allows the caller to specify via the may_reduce_num parameter whether the vring code is allowed to allocate a smaller ring than specified. However, the split ring allocation code tries to allocate a smaller ring on allocation failure regardless of what the caller specified. This may cause trouble for e.g. virtio-pci in legacy mode, which does not support ring resizing. (The packed ring code does not resize in any case.) Let's fix this by bailing out immediately in the split ring code if the requested size cannot be allocated and may_reduce_num has not been specified. While at it, fix a typo in the usage instructions. Fixes: 2a2d1382fe9d ("virtio: Add improved queue allocation API") Cc: stable@vger.kernel.org # v4.6+ Signed-off-by: Cornelia Huck Signed-off-by: Michael S. Tsirkin Reviewed-by: Halil Pasic Reviewed-by: Jens Freimann Signed-off-by: Greg Kroah-Hartman --- drivers/virtio/virtio_ring.c | 2 ++ include/linux/virtio_ring.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) --- a/drivers/virtio/virtio_ring.c +++ b/drivers/virtio/virtio_ring.c @@ -871,6 +871,8 @@ static struct virtqueue *vring_create_vi GFP_KERNEL|__GFP_NOWARN|__GFP_ZERO); if (queue) break; + if (!may_reduce_num) + return NULL; } if (!num) --- a/include/linux/virtio_ring.h +++ b/include/linux/virtio_ring.h @@ -63,7 +63,7 @@ struct virtqueue; /* * Creates a virtqueue and allocates the descriptor ring. If * may_reduce_num is set, then this may allocate a smaller ring than - * expected. The caller should query virtqueue_get_ring_size to learn + * expected. The caller should query virtqueue_get_vring_size to learn * the actual size of the ring. */ struct virtqueue *vring_create_virtqueue(unsigned int index,