usb: typec: ucsi: displayport: Fix potential deadlock
commit b791a67f68121d69108640d4a3e591d210ffe850 upstream.
The function ucsi_displayport_work() does not access the
connector, so it also must not acquire the connector lock.
This fixes a potential deadlock scenario:
ucsi_displayport_work() -> lock(&con->lock)
typec_altmode_vdm()
dp_altmode_vdm()
dp_altmode_work()
typec_altmode_enter()
ucsi_displayport_enter() -> lock(&con->lock)
Reported-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Fixes: af8622f6a5 ("usb: typec: ucsi: Support for DisplayPort alt mode")
Cc: stable@vger.kernel.org
Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Link: https://lore.kernel.org/r/20240507134316.161999-1-heikki.krogerus@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
467139546f
commit
6b40d4c262
1 changed files with 0 additions and 4 deletions
|
|
@ -251,8 +251,6 @@ static void ucsi_displayport_work(struct work_struct *work)
|
|||
struct ucsi_dp *dp = container_of(work, struct ucsi_dp, work);
|
||||
int ret;
|
||||
|
||||
mutex_lock(&dp->con->lock);
|
||||
|
||||
ret = typec_altmode_vdm(dp->alt, dp->header,
|
||||
dp->vdo_data, dp->vdo_size);
|
||||
if (ret)
|
||||
|
|
@ -261,8 +259,6 @@ static void ucsi_displayport_work(struct work_struct *work)
|
|||
dp->vdo_data = NULL;
|
||||
dp->vdo_size = 0;
|
||||
dp->header = 0;
|
||||
|
||||
mutex_unlock(&dp->con->lock);
|
||||
}
|
||||
|
||||
void ucsi_displayport_remove_partner(struct typec_altmode *alt)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue