From: Christian Gromm Date: Tue, 8 May 2018 09:45:10 +0000 (+0200) Subject: staging: most: cdev: fix race condition X-Git-Tag: v5.15~8661^2~238 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=993c1637a08f436eacc7b3f4eacbda8dac0b304b;p=platform%2Fkernel%2Flinux-starfive.git staging: most: cdev: fix race condition This patch fixes a race condition between the functions disconnect and poll. Signed-off-by: Christian Gromm Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/most/cdev/cdev.c b/drivers/staging/most/cdev/cdev.c index 8e76525..4569838 100644 --- a/drivers/staging/most/cdev/cdev.c +++ b/drivers/staging/most/cdev/cdev.c @@ -292,13 +292,15 @@ static __poll_t comp_poll(struct file *filp, poll_table *wait) poll_wait(filp, &c->wq, wait); + mutex_lock(&c->io_mutex); if (c->cfg->direction == MOST_CH_RX) { - if (!kfifo_is_empty(&c->fifo)) + if (!c->dev || !kfifo_is_empty(&c->fifo)) mask |= EPOLLIN | EPOLLRDNORM; } else { - if (!kfifo_is_empty(&c->fifo) || ch_has_mbo(c)) + if (!c->dev || !kfifo_is_empty(&c->fifo) || ch_has_mbo(c)) mask |= EPOLLOUT | EPOLLWRNORM; } + mutex_unlock(&c->io_mutex); return mask; }