Commit 454748e3 authored by Dafna Hirschfeld's avatar Dafna Hirschfeld Committed by Mauro Carvalho Chehab
Browse files

media: staging: rkisp1: cap: protect buf.curr and buf.next with buf.lock



The spinlock buf.lock should protect access to the buffers.
This includes the buffers in buf.queue and also buf.curr and
buf.next. The function 'rkisp1_set_next_buf' access buf.next
therefore it should also be protected with the lock.

Signed-off-by: default avatarDafna Hirschfeld <dafna.hirschfeld@collabora.com>
Acked-by: default avatarHelen Koike <helen.koike@collabora.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent aa86e0bb
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -617,10 +617,11 @@ static void rkisp1_set_next_buf(struct rkisp1_capture *cap)
static void rkisp1_handle_buffer(struct rkisp1_capture *cap)
{
	struct rkisp1_isp *isp = &cap->rkisp1->isp;
	struct rkisp1_buffer *curr_buf = cap->buf.curr;
	struct rkisp1_buffer *curr_buf;
	unsigned long flags;

	spin_lock_irqsave(&cap->buf.lock, flags);
	curr_buf = cap->buf.curr;

	if (curr_buf) {
		curr_buf->vb.sequence = atomic_read(&isp->frame_sequence);
@@ -640,9 +641,9 @@ static void rkisp1_handle_buffer(struct rkisp1_capture *cap)
						 queue);
		list_del(&cap->buf.next->queue);
	}
	spin_unlock_irqrestore(&cap->buf.lock, flags);

	rkisp1_set_next_buf(cap);
	spin_unlock_irqrestore(&cap->buf.lock, flags);
}

void rkisp1_capture_isr(struct rkisp1_device *rkisp1)