Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 05726aca authored by Dong Fang's avatar Dong Fang Committed by Miklos Szeredi
Browse files

fuse: use list_for_each_entry() for list traversing



Signed-off-by: default avatarMiklos Szeredi <mszeredi@suse.cz>
parent efeb9e60
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -1765,11 +1765,9 @@ static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
/* Look up request on processing list by unique ID */
static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
{
	struct list_head *entry;

	list_for_each(entry, &fc->processing) {
	struct fuse_req *req;
		req = list_entry(entry, struct fuse_req, list);

	list_for_each_entry(req, &fc->processing, list) {
		if (req->in.h.unique == unique || req->intr_unique == unique)
			return req;
	}