Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1361763
| From | Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] drivers/media/media-devnode: add missing mutex lock in error handler |
| Date | 2016-03-21 13:30 +0100 |
| Message-ID | <rf785-5yn-7@gated-at.bofh.it> (permalink) |
| References | <rf6lI-4Vp-11@gated-at.bofh.it> |
| Organization | Samsung |
Em Mon, 21 Mar 2016 12:33:12 +0100 Max Kellermann <max@duempel.org> escreveu: Please, always send us your Signed-off-by on your patches, as described at: https://linuxtv.org/wiki/index.php/Development:_Submitting_Patches#Developer.27s_Certificate_of_Origin_1.1 Also, please add a description to the patch. Thanks, Mauro > --- > drivers/media/media-devnode.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/media/media-devnode.c b/drivers/media/media-devnode.c > index cea35bf..4d7e8dd 100644 > --- a/drivers/media/media-devnode.c > +++ b/drivers/media/media-devnode.c > @@ -266,8 +266,11 @@ int __must_check media_devnode_register(struct media_devnode *mdev, > return 0; > > error: > + mutex_lock(&media_devnode_lock); > cdev_del(&mdev->cdev); > clear_bit(mdev->minor, media_devnode_nums); > + mutex_unlock(&media_devnode_lock); > + > return ret; > } > > > -- > To unsubscribe from this list: send the line "unsubscribe linux-media" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- Thanks, Mauro
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] drivers/media/media-devnode: add missing mutex lock in error handler Max Kellermann <max@duempel.org> - 2016-03-21 12:40 +0100 Re: [PATCH] drivers/media/media-devnode: add missing mutex lock in error handler Mauro Carvalho Chehab <mchehab@osg.samsung.com> - 2016-03-21 13:30 +0100
csiph-web