From patchwork Thu Mar 28 08:03:42 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Xuan Zhuo X-Patchwork-Id: 13608155 Received: from out30-131.freemail.mail.aliyun.com (out30-131.freemail.mail.aliyun.com [115.124.30.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2AF5E52F86; Thu, 28 Mar 2024 08:03:55 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.131 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711613038; cv=none; b=Y1p/4MRxipNVAqGcpOxCm7OpGWlBxOZEg8IkVivM5xP+rPyFQ+K81G8nsYczIZad6T4X8pjUmoS4dEwnWUunsDcT2zjJnB0G4bUdOSlv6TXBOF6R83fPsicgNb88ayFF3lq8cJOKcx2o4jdpPuFAGgpTbuCXMIDnJlNWYhZZrFc= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711613038; c=relaxed/simple; bh=rxCBsk2tdlNICkJBcPELmGW3m58VKf/iG+c+3e4vERk=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version:Content-Type; b=hxfozX7Dd8WqOeTBPvE/IpX/lm0qWWDg0tUiiDHg2kiw4fzOqro4MvxdhVTUgxg5zCLuK1C2dQvtfiDjwK9KtJ7R3ER1PsUR1Y+WvDxsyYEmAnPodnilO+dL+5ZuMfgR9wWh23ChG2Ul1Ft/f4evYaQM5UkW3ZI+TaM+ZXKWVII= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com; spf=pass smtp.mailfrom=linux.alibaba.com; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b=Tz9mM2L0; arc=none smtp.client-ip=115.124.30.131 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="Tz9mM2L0" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1711613031; h=From:To:Subject:Date:Message-Id:MIME-Version:Content-Type; bh=RRwgpt8H+JeOfUF5M0fnLgI8P6UgcZIx9pzBvnK+1IM=; b=Tz9mM2L0FdN+dxgqU8uNPHHpXwbMIehp3DKtzA2e9d1ldyieQzsOsPuy3G68Wiofoj1taznlhc6/B8/Ikln+jhUiwCTiu5B+Kfi+PGcTIXzussxTs4e3o3eXkZv/QHYlp2XQaMfAUlErg4aua0GuBPkzIhyrZhddQgiWAz23xeA= X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R211e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018046060;MF=xuanzhuo@linux.alibaba.com;NM=1;PH=DS;RN=26;SR=0;TI=SMTPD_---0W3Sg6Fp_1711613029; Received: from localhost(mailfrom:xuanzhuo@linux.alibaba.com fp:SMTPD_---0W3Sg6Fp_1711613029) by smtp.aliyun-inc.com; Thu, 28 Mar 2024 16:03:50 +0800 From: Xuan Zhuo To: virtualization@lists.linux.dev Cc: Richard Weinberger , Anton Ivanov , Johannes Berg , Hans de Goede , =?utf-8?q?Ilpo_J=C3=A4rvinen?= , Vadim Pasternak , Bjorn Andersson , Mathieu Poirier , Cornelia Huck , Halil Pasic , Eric Farman , Heiko Carstens , Vasily Gorbik , Alexander Gordeev , Christian Borntraeger , Sven Schnelle , "Michael S. Tsirkin" , David Hildenbrand , Jason Wang , Xuan Zhuo , linux-um@lists.infradead.org, platform-driver-x86@vger.kernel.org, linux-remoteproc@vger.kernel.org, linux-s390@vger.kernel.org, kvm@vger.kernel.org Subject: [PATCH vhost v7 0/6] refactor the params of find_vqs() Date: Thu, 28 Mar 2024 16:03:42 +0800 Message-Id: <20240328080348.3620-1-xuanzhuo@linux.alibaba.com> X-Mailer: git-send-email 2.32.0.3.g01195cf9f Precedence: bulk X-Mailing-List: linux-remoteproc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Git-Hash: fc2c3bb8a235 This pathset is splited from the http://lore.kernel.org/all/20240229072044.77388-1-xuanzhuo@linux.alibaba.com That may needs some cycles to discuss. But that notifies too many people. But just the four commits need to notify so many people. And four commits are independent. So I split that patch set, let us review these first. The patch set try to refactor the params of find_vqs(). Then we can just change the structure, when introducing new features. Thanks. v7: 1. fix two bugs. @Jason v6: 1. virtio_balloon: a single variable for both purposes. 2. if names[i] is null, return error v5: 1. virtio_balloon: follow David Hildenbrand's suggest http://lore.kernel.org/all/3620be9c-e288-4ff2-a7be-1fcf806e6e6e@redhat.com 2. fix bug of the reference of "cfg_idx" http://lore.kernel.org/all/202403222227.Sdp23Lcb-lkp@intel.com v4: 1. remove support for names array entries being null 2. remove cfg_idx from virtio_vq_config v3: 1. fix the bug: "assignment of read-only location '*cfg.names'" v2: 1. add kerneldoc for "struct vq_transport_config" @ilpo.jarvinen v1: 1. fix some comments from ilpo.jarvinen@linux.intel.com Xuan Zhuo (6): virtio_balloon: remove the dependence where names[] is null virtio: remove support for names array entries being null. virtio: find_vqs: pass struct instead of multi parameters virtio: vring_create_virtqueue: pass struct instead of multi parameters virtio: vring_new_virtqueue(): pass struct instead of multi parameters virtio_ring: simplify the parameters of the funcs related to vring_create/new_virtqueue() arch/um/drivers/virtio_uml.c | 36 +++-- drivers/platform/mellanox/mlxbf-tmfifo.c | 23 +-- drivers/remoteproc/remoteproc_virtio.c | 37 +++-- drivers/s390/virtio/virtio_ccw.c | 38 ++--- drivers/virtio/virtio_balloon.c | 48 +++---- drivers/virtio/virtio_mmio.c | 36 +++-- drivers/virtio/virtio_pci_common.c | 69 ++++----- drivers/virtio/virtio_pci_common.h | 9 +- drivers/virtio/virtio_pci_legacy.c | 16 ++- drivers/virtio/virtio_pci_modern.c | 37 +++-- drivers/virtio/virtio_ring.c | 173 ++++++++--------------- drivers/virtio/virtio_vdpa.c | 51 ++++--- include/linux/virtio_config.h | 76 +++++++--- include/linux/virtio_ring.h | 93 +++++++----- tools/virtio/virtio_test.c | 4 +- tools/virtio/vringh_test.c | 28 ++-- 16 files changed, 382 insertions(+), 392 deletions(-) --- 2.32.0.3.g01195cf9f