Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert 97dc86b and fix #607 #608

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions v4l2loopback.c
Original file line number Diff line number Diff line change
Expand Up @@ -1880,8 +1880,8 @@ static int vidioc_dqbuf(struct file *file, void *fh, struct v4l2_buffer *buf)
case V4L2_BUF_TYPE_VIDEO_OUTPUT:
spin_lock_bh(&dev->list_lock);

b = list_entry(dev->outbufs_list.prev, struct v4l2l_buffer,
list_head);
b = list_first_entry(&dev->outbufs_list, struct v4l2l_buffer,
list_head);
list_move_tail(&b->list_head, &dev->outbufs_list);

spin_unlock_bh(&dev->list_lock);
Expand Down
Loading