[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210517090836.533-16-xieyongji@bytedance.com>
Date: Mon, 17 May 2021 17:08:34 +0800
From: Xie Yongji <xieyongji@...edance.com>
To: mst@...hat.com, jasowang@...hat.com, stefanha@...hat.com
Cc: amit@...nel.org, arei.gonglei@...wei.com, airlied@...ux.ie,
kraxel@...hat.com, dan.j.williams@...el.com,
johannes@...solutions.net, ohad@...ery.com,
bjorn.andersson@...aro.org, david@...hat.com, vgoyal@...hat.com,
miklos@...redi.hu, sgarzare@...hat.com,
virtualization@...ts.linux-foundation.org,
linux-kernel@...r.kernel.org
Subject: [RFC PATCH 15/17] virtiofs: Remove unused used length
The used length is not used. Let's drop it and
pass NULL to virtqueue_get_buf() instead.
Signed-off-by: Xie Yongji <xieyongji@...edance.com>
---
fs/fuse/virtio_fs.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/fs/fuse/virtio_fs.c b/fs/fuse/virtio_fs.c
index 4ee6f734ba83..e61c94eaa20f 100644
--- a/fs/fuse/virtio_fs.c
+++ b/fs/fuse/virtio_fs.c
@@ -322,12 +322,11 @@ static void virtio_fs_hiprio_done_work(struct work_struct *work)
/* Free completed FUSE_FORGET requests */
spin_lock(&fsvq->lock);
do {
- unsigned int len;
void *req;
virtqueue_disable_cb(vq);
- while ((req = virtqueue_get_buf(vq, &len)) != NULL) {
+ while ((req = virtqueue_get_buf(vq, NULL)) != NULL) {
kfree(req);
dec_in_flight_req(fsvq);
}
@@ -600,7 +599,6 @@ static void virtio_fs_requests_done_work(struct work_struct *work)
struct virtqueue *vq = fsvq->vq;
struct fuse_req *req;
struct fuse_req *next;
- unsigned int len;
LIST_HEAD(reqs);
/* Collect completed requests off the virtqueue */
@@ -608,7 +606,7 @@ static void virtio_fs_requests_done_work(struct work_struct *work)
do {
virtqueue_disable_cb(vq);
- while ((req = virtqueue_get_buf(vq, &len)) != NULL) {
+ while ((req = virtqueue_get_buf(vq, NULL)) != NULL) {
spin_lock(&fpq->lock);
list_move_tail(&req->list, &reqs);
spin_unlock(&fpq->lock);
--
2.11.0
Powered by blists - more mailing lists