Bug 79591
Summary: | possible circular locking dependency detected | ||
---|---|---|---|
Product: | Drivers | Reporter: | Stefan Ringel (mail) |
Component: | Video(DRI - non Intel) | Assignee: | drivers_video-dri |
Status: | NEW --- | ||
Severity: | high | CC: | martin.peres |
Priority: | P1 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | 3.16.0-0.rc3.git3 | Subsystem: | |
Regression: | No | Bisected commit-id: | |
Attachments: | drm/nouveau/therm: fix a potential deadlock in the therm monitoring code |
Description
Stefan Ringel
2014-07-07 08:11:24 UTC
Thanks for reporting. I'll have a look at it during the week! Please do not report Nouveau bugs to the kernel's bugtracker. We have our own which we monitor much more attentively. and witch bugtracker is it? I was referring to freedesktop's bug tracker. Reporting bugs to Nouveau is explained here: http://nouveau.freedesktop.org/wiki/Bugs/ But that's ok, no need to report it once again ;) static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo) { if (bo->bdev->driver->move_notify) bo->bdev->driver->move_notify(bo, NULL); if (bo->ttm) { ttm_tt_unbind(bo->ttm); ttm_tt_destroy(bo->ttm); bo->ttm = NULL; } ttm_bo_mem_put(bo, &bo->mem); ww_mutex_unlock (&bo->resv->lock); } The last line ? must it also change like this: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/drivers/gpu/drm/ttm/ttm_bo.c?id=c75230833ce4fbbfaa257c07b55f97912fb1dc02 Created attachment 142831 [details]
drm/nouveau/therm: fix a potential deadlock in the therm monitoring code
Sorry for the wait. Can you try to reproduce the issue with this patch?
look like okey. (In reply to Martin Peres from comment #5) > Sorry for the wait. Can you try to reproduce the issue with this patch? Your patch works. Thanks. I cannot reproduce it with this patch. (In reply to Stefan Ringel from comment #7) > (In reply to Martin Peres from comment #5) > > > Sorry for the wait. Can you try to reproduce the issue with this patch? > > Your patch works. Thanks. I cannot reproduce it with this patch. Great! I've asked for inclusion. I'll close this bug |