From patchwork Mon Mar 4 11:47:15 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Xuan Zhuo X-Patchwork-Id: 13580474 Received: from out30-112.freemail.mail.aliyun.com (out30-112.freemail.mail.aliyun.com [115.124.30.112]) (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 5586F3B788; Mon, 4 Mar 2024 11:47:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.112 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709552853; cv=none; b=khStWWWmCUMaVntFlji+e61fLGUj/IA1QzNI4Zo5Nj+hrjIeh8dcQy8hU1ihjRJkptgEXYPoUk81An4W+iQES7GdK4t+lLj/vn+BR9kqPzMu4TarXtkCoiOHgsfLQDWFZcjkw+czpmqRclLPVHSpO/Udz4uQ93EgQGC0GDz+eNY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709552853; c=relaxed/simple; bh=oqLqmjqNZDJQAVDOjGK0i7+t19ZhCA5VqlzoKug4/mw=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=hV1qD+iUQiH7czo6nZtd6LYq/NNiZ0TbJXLIxQ6HWLnDH/n79zMCI3ATLJJd1CravkCokFZLnOUJLvhiNdf00lNfkouZ47Hbw6Ym9fm9n3pKiRQYZZms9gWBQulUopHEcERgOuZRfVej3ekguvN216eg9xMcuXV1+5J5Blq5/P8= 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=A9Zhl6uS; arc=none smtp.client-ip=115.124.30.112 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="A9Zhl6uS" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1709552842; h=From:To:Subject:Date:Message-Id:MIME-Version; bh=FSbHit5fj3JcGj8LdoWrNWb4RI1EJ336YjFwd8R5Hlk=; b=A9Zhl6uSD7Cj8G2algKHEwdXcmbmsWP+vmaIQwFJMiQi1aPOZrF/Z9EZ+m6EPcwNL3vX6R/SUy8d2RrzbwjtZ25A9KlYwqsFKkLRvF1VXK5Q5AeBmQCaxdTE4H+LXvtSy9Eehtbf454Oewkzg0k52WyRDoNgHlBtdCR83YhgfNo= X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R181e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018045170;MF=xuanzhuo@linux.alibaba.com;NM=1;PH=DS;RN=25;SR=0;TI=SMTPD_---0W1op2Ky_1709552839; Received: from localhost(mailfrom:xuanzhuo@linux.alibaba.com fp:SMTPD_---0W1op2Ky_1709552839) by smtp.aliyun-inc.com; Mon, 04 Mar 2024 19:47:20 +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" , 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 0/4] refactor the params of find_vqs() Date: Mon, 4 Mar 2024 19:47:15 +0800 Message-Id: <20240304114719.3710-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: f8834711b783 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. Xuan Zhuo (4): 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 | 31 ++-- drivers/platform/mellanox/mlxbf-tmfifo.c | 24 ++-- drivers/remoteproc/remoteproc_virtio.c | 31 ++-- drivers/s390/virtio/virtio_ccw.c | 33 ++--- drivers/virtio/virtio_mmio.c | 30 ++-- drivers/virtio/virtio_pci_common.c | 59 ++++---- drivers/virtio/virtio_pci_common.h | 9 +- drivers/virtio/virtio_pci_legacy.c | 16 ++- drivers/virtio/virtio_pci_modern.c | 38 +++-- drivers/virtio/virtio_ring.c | 173 ++++++++--------------- drivers/virtio/virtio_vdpa.c | 45 +++--- include/linux/virtio_config.h | 51 +++++-- include/linux/virtio_ring.h | 82 ++++++----- tools/virtio/virtio_test.c | 4 +- tools/virtio/vringh_test.c | 28 ++-- 15 files changed, 328 insertions(+), 326 deletions(-) --- 2.32.0.3.g01195cf9f