All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] [RFC] DRM locking issues during early open
@ 2012-04-19 16:22 Andy Whitcroft
  2012-04-19 16:22 ` [PATCH 1/1] drm -- stop early access to drm devices Andy Whitcroft
                   ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: Andy Whitcroft @ 2012-04-19 16:22 UTC (permalink / raw)
  To: Andy Whitcroft, David Airlie, dri-devel
  Cc: Jesse Barnes, Bryce Harrington, linux-kernel

We have been carrying a (rather poor) patch for an issue we identified in
the DRM driver.  This issue is triggered when a DRM device is initialising
and userspace attempts to open it, typically in response to the sysfs
device added event.  Basically we allocate the minor numbers making
the device available, and then call the drm load callback.  Until this
completes the device is really not ready and these early opens typically
lead to oopses.

We have been using the following patch to avoid this by marking the minors
as in error until the load method has completed.  This avoids the early
open by simply erroring out the opens with EAGAIN.  Obviously we should
be delaying the open until the load method complete.

I include the existing patch for completness (it is not really ready for
merging) to illustrate the issue.  I think it is logical that the wait
should simply be delayed until the load has completed.  I am proposing
to include a wait queue associated with the idr cache for the drm minors
which we can use to allow open callers to wait_event_interruptible() on.
I'll be putting together a prototype shortly and will follow up with it.

Thoughts?

-apw

Andy Whitcroft (1):
  drm -- stop early access to drm devices

 drivers/gpu/drm/drm_fops.c     |    8 ++++++--
 drivers/gpu/drm/drm_pci.c      |    4 ++++
 drivers/gpu/drm/drm_platform.c |    4 ++++
 drivers/gpu/drm/drm_stub.c     |    2 +-
 4 files changed, 15 insertions(+), 3 deletions(-)

-- 
1.7.9.5


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2012-04-20 17:25 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-19 16:22 [PATCH 0/1] [RFC] DRM locking issues during early open Andy Whitcroft
2012-04-19 16:22 ` [PATCH 1/1] drm -- stop early access to drm devices Andy Whitcroft
2012-04-19 16:30 ` [PATCH 0/1] [RFC] DRM locking issues during early open Dave Airlie
2012-04-19 16:41   ` Andy Whitcroft
2012-04-19 16:47     ` Dave Airlie
2012-04-19 16:47       ` Dave Airlie
2012-04-19 16:52       ` Dave Airlie
2012-04-19 16:55         ` Jesse Barnes
2012-04-19 16:56           ` Dave Airlie
2012-04-19 17:00             ` Dave Airlie
2012-04-19 16:41   ` Daniel Vetter
2012-04-20  9:40 ` Dave Airlie
2012-04-20 10:31   ` Andy Whitcroft
2012-04-20 10:34     ` Dave Airlie
2012-04-20 17:25       ` Andy Whitcroft
2012-04-20 17:25         ` Andy Whitcroft

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.