media: v4l: ctrl: Provide unlocked variant of v4l2_ctrl_grab
Sometimes it may be necessary to grab a control while holding the control handler's lock. Provide an unlocked variant of v4l2_ctrl_grab for the purpose --- it's called __v4l2_ctrl_grab. Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:

کامیت شده توسط
Mauro Carvalho Chehab

والد
9a8aaa28f5
کامیت
7a9b109d91
@@ -2511,14 +2511,15 @@ void v4l2_ctrl_activate(struct v4l2_ctrl *ctrl, bool active)
|
||||
}
|
||||
EXPORT_SYMBOL(v4l2_ctrl_activate);
|
||||
|
||||
void v4l2_ctrl_grab(struct v4l2_ctrl *ctrl, bool grabbed)
|
||||
void __v4l2_ctrl_grab(struct v4l2_ctrl *ctrl, bool grabbed)
|
||||
{
|
||||
bool old;
|
||||
|
||||
if (ctrl == NULL)
|
||||
return;
|
||||
|
||||
v4l2_ctrl_lock(ctrl);
|
||||
lockdep_assert_held(ctrl->handler->lock);
|
||||
|
||||
if (grabbed)
|
||||
/* set V4L2_CTRL_FLAG_GRABBED */
|
||||
old = test_and_set_bit(1, &ctrl->flags);
|
||||
@@ -2527,9 +2528,8 @@ void v4l2_ctrl_grab(struct v4l2_ctrl *ctrl, bool grabbed)
|
||||
old = test_and_clear_bit(1, &ctrl->flags);
|
||||
if (old != grabbed)
|
||||
send_event(NULL, ctrl, V4L2_EVENT_CTRL_CH_FLAGS);
|
||||
v4l2_ctrl_unlock(ctrl);
|
||||
}
|
||||
EXPORT_SYMBOL(v4l2_ctrl_grab);
|
||||
EXPORT_SYMBOL(__v4l2_ctrl_grab);
|
||||
|
||||
/* Log the control name and value */
|
||||
static void log_ctrl(const struct v4l2_ctrl *ctrl,
|
||||
|
مرجع در شماره جدید
Block a user