[PATCH] DRM: omapdrm DRM/KMS driver for TI OMAP platforms

2011-11-25 Thread Daniel Vetter
On Fri, Nov 25, 2011 at 01:14:00PM -0600, Rob Clark wrote: > btw, Inki, Daniel, Konrad, and everyone who's reviewed this driver > over the (what seems like) years, I'd appreciate r-b's or comments if > you think there is anything remaining that should be done before first > version is merged. I th

Re: [PATCH] drm, i915: Fix memory leak in i915_gem_busy_ioctl().

2011-11-25 Thread Rakib Mullick
On Mon, Nov 21, 2011 at 11:16 PM, Keith Packard wrote: > On Mon, 21 Nov 2011 17:23:06 +0100, Daniel Vetter wrote: > >> Indeed, nice catch (albeit totally unlikely to be hit, because the error >> only happens when the gpu ceases to progress in the ring, so imo not >> stable material). Keith, pleas

[Bug 43248] Starting teeworlds results in black screen

2011-11-25 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=43248 --- Comment #1 from Sandeep 2011-11-25 12:23:37 PST --- Created attachment 53857 --> https://bugs.freedesktop.org/attachment.cgi?id=53857 output of lspci -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You

[Bug 43248] New: Starting teeworlds results in black screen

2011-11-25 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=43248 Bug #: 43248 Summary: Starting teeworlds results in black screen Classification: Unclassified Product: DRI Version: XOrg CVS Platform: x86-64 (AMD64) OS/Version: Linux (All)

[Linaro-mm-sig] [RFC 1/2] dma-buf: Introduce dma buffer sharing mechanism

2011-11-25 Thread Daniel Vetter
On Fri, Nov 25, 2011 at 02:13:22PM +, Dave Airlie wrote: > On Tue, Oct 11, 2011 at 10:23 AM, Sumit Semwal wrote: > > This is the first step in defining a dma buffer sharing mechanism. > > > > A new buffer object dma_buf is added, with operations and API to allow easy > > sharing of this buffer

[Linaro-mm-sig] [RFC 1/2] dma-buf: Introduce dma buffer sharing mechanism

2011-11-25 Thread Dave Airlie
I've rebuilt my PRIME interface on top of dmabuf to see how it would work, I've got primed gears running again on top, but I expect all my object lifetime and memory ownership rules need fixing up (i.e. leaks like a sieve). http://cgit.freedesktop.org/~airlied/linux/log/?h=drm-prime-dmabuf has t

[Linaro-mm-sig] [RFC 1/2] dma-buf: Introduce dma buffer sharing mechanism

2011-11-25 Thread Dave Airlie
> +struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf, > + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? struct device *dev) > +{ > + ? ? ? struct dma_buf_attachment *attach; > + ? ? ? int ret; > + > + ? ? ? BUG_ON(!dmabuf || !dev); > + > + ? ? ? mutex_lock(&dmabuf->lock); > + > + ? ?

[Bug 43248] Starting teeworlds results in black screen

2011-11-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43248 --- Comment #2 from Sandeep 2011-11-25 16:02:45 PST --- This happens for OpenArena as well. Trine on the other hand works properly (on low detail) -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are recei

[Linaro-mm-sig] [RFC 1/2] dma-buf: Introduce dma buffer sharing mechanism

2011-11-25 Thread Dave Airlie
On Tue, Oct 11, 2011 at 10:23 AM, Sumit Semwal wrote: > This is the first step in defining a dma buffer sharing mechanism. > > A new buffer object dma_buf is added, with operations and API to allow easy > sharing of this buffer object across devices. > > The framework allows: > - a new buffer-obje

[PATCH] DRM: omapdrm DRM/KMS driver for TI OMAP platforms

2011-11-25 Thread Rob Clark
btw, Inki, Daniel, Konrad, and everyone who's reviewed this driver over the (what seems like) years, I'd appreciate r-b's or comments if you think there is anything remaining that should be done before first version is merged. I think it's been reviewed to death by now, and I'd *really* like to ma

[Bug 43248] Starting teeworlds results in black screen

2011-11-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43248 --- Comment #1 from Sandeep 2011-11-25 12:23:37 PST --- Created attachment 53857 --> https://bugs.freedesktop.org/attachment.cgi?id=53857 output of lspci -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You a

[Bug 43248] New: Starting teeworlds results in black screen

2011-11-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43248 Bug #: 43248 Summary: Starting teeworlds results in black screen Classification: Unclassified Product: DRI Version: XOrg CVS Platform: x86-64 (AMD64) OS/Version: Linux (All)

Re: [PATCH] DRM: omapdrm DRM/KMS driver for TI OMAP platforms

2011-11-25 Thread Daniel Vetter
On Fri, Nov 25, 2011 at 01:14:00PM -0600, Rob Clark wrote: > btw, Inki, Daniel, Konrad, and everyone who's reviewed this driver > over the (what seems like) years, I'd appreciate r-b's or comments if > you think there is anything remaining that should be done before first > version is merged. I th

Re: [Linaro-mm-sig] [RFC 1/2] dma-buf: Introduce dma buffer sharing mechanism

2011-11-25 Thread Dave Airlie
I've rebuilt my PRIME interface on top of dmabuf to see how it would work, I've got primed gears running again on top, but I expect all my object lifetime and memory ownership rules need fixing up (i.e. leaks like a sieve). http://cgit.freedesktop.org/~airlied/linux/log/?h=drm-prime-dmabuf has t

Re: [Linaro-mm-sig] [RFC 1/2] dma-buf: Introduce dma buffer sharing mechanism

2011-11-25 Thread Dave Airlie
> +struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf, > +                                               struct device *dev) > +{ > +       struct dma_buf_attachment *attach; > +       int ret; > + > +       BUG_ON(!dmabuf || !dev); > + > +       mutex_lock(&dmabuf->lock); > + > +    

Re: [Linaro-mm-sig] [RFC 1/2] dma-buf: Introduce dma buffer sharing mechanism

2011-11-25 Thread Daniel Vetter
On Fri, Nov 25, 2011 at 02:13:22PM +, Dave Airlie wrote: > On Tue, Oct 11, 2011 at 10:23 AM, Sumit Semwal wrote: > > This is the first step in defining a dma buffer sharing mechanism. > > > > A new buffer object dma_buf is added, with operations and API to allow easy > > sharing of this buffer

Re: [Linaro-mm-sig] [RFC 1/2] dma-buf: Introduce dma buffer sharing mechanism

2011-11-25 Thread Dave Airlie
On Tue, Oct 11, 2011 at 10:23 AM, Sumit Semwal wrote: > This is the first step in defining a dma buffer sharing mechanism. > > A new buffer object dma_buf is added, with operations and API to allow easy > sharing of this buffer object across devices. > > The framework allows: > - a new buffer-obje