[PATCH 5/5] drm/vgem: properly implement mmap

2012-02-08 Thread Chris Wilson
On Thu, 9 Feb 2012 00:19:31 +0100, Ben Widawsky wrote: > Mostly copied from i915 gtt mmaps, this will properly fault in pages as > the user tries to use them. The only thing of note are that no > prefaulting occurs, so perhaps some kind of madvise will happen later if > needed. What's the goal h

[PATCH 1/5] drm/vgem: virtual GEM provider

2012-02-08 Thread Chris Wilson
On Thu, 9 Feb 2012 00:19:27 +0100, Ben Widawsky wrote: > From: Adam Jackson > +static void vgem_gem_free_object(struct drm_gem_object *obj) > +{ > + if (obj->map_list.map) > + drm_gem_free_mmap_offset(obj); > + > + drm_gem_object_release(obj); > +} drm_gem_free_mmap_offset()

[Bug 45760] World of warcraft 4.3 slow down after a hour of game

2012-02-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45760 --- Comment #5 from Andrew 2012-02-08 23:09:21 PST --- Yesterday I switched to xorg edgers, but the problem has remained. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --

[Bug 45760] World of warcraft 4.3 slow down after a hour of game

2012-02-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45760 --- Comment #4 from Andrew 2012-02-08 23:05:01 PST --- Created attachment 56792 --> https://bugs.freedesktop.org/attachment.cgi?id=56792 xorg -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving

[Bug 45760] World of warcraft 4.3 slow down after a hour of game

2012-02-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45760 --- Comment #3 from Andrew 2012-02-08 23:04:39 PST --- Created attachment 56791 --> https://bugs.freedesktop.org/attachment.cgi?id=56791 glxinfo -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiv

[Bug 45760] World of warcraft 4.3 slow down after a hour of game

2012-02-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45760 --- Comment #2 from Andrew 2012-02-08 23:04:11 PST --- Created attachment 56790 --> https://bugs.freedesktop.org/attachment.cgi?id=56790 dmesg -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receivin

[Bug 16140] [RADEON:KMS:RV250:RESUME] suspend to RAM resume broken

2012-02-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=16140 soren121 changed: What|Removed |Added CC||doodl...@gmail.com --- Comment #45 from so

[Bug 12882] [855GM DVO] s-video not detected (DVO TV not supported yet)

2012-02-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=12882 Daniel Vetter changed: What|Removed |Added AssignedTo|daniel at ffwll.ch |dri-devel at lists.freedesktop

[Bug 12882] [855GM DVO] s-video not detected (DVO TV not supported yet)

2012-02-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=12882 Chris Wilson changed: What|Removed |Added AssignedTo|dri-devel at lists.freedesktop |daniel at ffwll.ch |

[Bug 17902] [830M] need support for DVO-LVDS via na2501

2012-02-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=17902 Chris Wilson changed: What|Removed |Added QAContact|xorg-team at lists.x.org | CC|

[Bug 36602] Hierarchical Z support for R600

2012-02-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36602 --- Comment #34 from darkbasic 2012-02-08 16:46:33 PST --- Thanks. Any chance hitting git master (masked behind a flag of course)? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail b

[Bug 36602] Hierarchical Z support for R600

2012-02-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36602 --- Comment #33 from Jerome Glisse 2012-02-08 16:29:04 PST --- Created attachment 56785 --> https://bugs.freedesktop.org/attachment.cgi?id=56785 Kernel patch top of lastest linux + tiling Kernel patch on top of last linus + tiling. All seems

[Bug 36602] Hierarchical Z support for R600

2012-02-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36602 --- Comment #32 from Jerome Glisse 2012-02-08 16:27:23 PST --- Created attachment 56784 --> https://bugs.freedesktop.org/attachment.cgi?id=56784 r600g patch r600g patch on top of master -- Configure bugmail: https://bugs.freedesktop.org/use

Re: [PATCH 5/5] drm/vgem: properly implement mmap

2012-02-08 Thread Chris Wilson
On Thu, 9 Feb 2012 00:19:31 +0100, Ben Widawsky wrote: > Mostly copied from i915 gtt mmaps, this will properly fault in pages as > the user tries to use them. The only thing of note are that no > prefaulting occurs, so perhaps some kind of madvise will happen later if > needed. What's the goal h

Re: [PATCH 1/5] drm/vgem: virtual GEM provider

2012-02-08 Thread Chris Wilson
On Thu, 9 Feb 2012 00:19:27 +0100, Ben Widawsky wrote: > From: Adam Jackson > +static void vgem_gem_free_object(struct drm_gem_object *obj) > +{ > + if (obj->map_list.map) > + drm_gem_free_mmap_offset(obj); > + > + drm_gem_object_release(obj); > +} drm_gem_free_mmap_offset()

[PATCH 5/5] drm/vgem: properly implement mmap

2012-02-08 Thread Ben Widawsky
Mostly copied from i915 gtt mmaps, this will properly fault in pages as the user tries to use them. The only thing of note are that no prefaulting occurs, so perhaps some kind of madvise will happen later if needed. The only other thing missing right not is shrinker support, which will come next a

[PATCH 4/5] drm/vgem: getparam ioctl

2012-02-08 Thread Ben Widawsky
Similar to i915, it's nice to be able to query this device uniquely and get some info Signed-off-by: Ben Widawsky --- drivers/gpu/drm/vgem/vgem_drv.c | 29 + include/drm/vgem_drm.h | 11 +++ 2 files changed, 32 insertions(+), 8 deletions(-) diff

[PATCH 3/5] drm/vgem: Add a drm_vgem_gem_object

2012-02-08 Thread Ben Widawsky
and use it Signed-off-by: Ben Widawsky --- drivers/gpu/drm/vgem/vgem_drv.c | 13 ++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/vgem/vgem_drv.c b/drivers/gpu/drm/vgem/vgem_drv.c index 3084389..d47bd71 100644 --- a/drivers/gpu/drm/vgem/vgem_drv.c +

[PATCH 2/5] drm/vgem: fops should be separate and constified

2012-02-08 Thread Ben Widawsky
...or else it just won't build. Signed-off-by: Ben Widawsky --- drivers/gpu/drm/vgem/vgem_drv.c | 20 +++- 1 files changed, 11 insertions(+), 9 deletions(-) diff --git a/drivers/gpu/drm/vgem/vgem_drv.c b/drivers/gpu/drm/vgem/vgem_drv.c index 82c6787..3084389 100644 --- a/drive

[RFCv2 PATCH 0/5] virtual GEM provider

2012-02-08 Thread Ben Widawsky
Incorporated some of the feedback given to Adam's original patch. My intention is to use this to do some dmabuf work/testing with i915 since it seemed too difficult to get some of Dave Airlie's stuff working, and I really don't feel like learning anything about nouveau if I can avoid it. (thoug

[PATCH 1/5] drm/vgem: virtual GEM provider

2012-02-08 Thread Ben Widawsky
From: Adam Jackson This is about as minimal of a virtual GEM service as possible. My plan is to use this with non-native-3D hardware for buffer sharing between X and DRI. The current drisw winsys assumes an unmodified X server, which means it's hopelessly inefficient for both the push direction

[Bug 45760] World of warcraft 4.3 slow down after a hour of game

2012-02-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=45760 --- Comment #1 from Alex Deucher 2012-02-08 05:27:20 PST --- Please attach your xorg log, dmesg output, and glxinfo output. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because:

[PATCH libdrm] radeon_cs_setup_bo: Fix accounting if caller specified write and read domains.

2012-02-08 Thread Michel Dänzer
From: Michel D?nzer Only account for the write domain in that case. Should fix https://bugs.freedesktop.org/show_bug.cgi?id=43893 . Signed-off-by: Michel D?nzer --- radeon/radeon_cs_space.c | 15 +-- 1 files changed, 9 insertions(+), 6 deletions(-) diff --git a/radeon/radeon_cs

[Bug 12882] [855GM DVO] s-video not detected (DVO TV not supported yet)

2012-02-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=12882 Daniel Vetter changed: What|Removed |Added AssignedTo|dan...@ffwll.ch |dri-devel@lists.freedesktop

[Bug 12882] [855GM DVO] s-video not detected (DVO TV not supported yet)

2012-02-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=12882 Chris Wilson changed: What|Removed |Added AssignedTo|dri-devel@lists.freedesktop |dan...@ffwll.ch |.org

[Bug 17902] [830M] need support for DVO-LVDS via na2501

2012-02-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=17902 Chris Wilson changed: What|Removed |Added QAContact|xorg-t...@lists.x.org | CC|

[PATCH libdrm] radeon_cs_setup_bo: Fix accounting if caller specified write and read domains.

2012-02-08 Thread Alex Deucher
2012/2/8 Michel D?nzer : > From: Michel D?nzer > > Only account for the write domain in that case. > > Should fix https://bugs.freedesktop.org/show_bug.cgi?id=43893 . > > Signed-off-by: Michel D?nzer Reviewed-by: Alex Deucher > --- > ?radeon/radeon_cs_space.c | ? 15 +-- > ?1 files

[Bug 45760] New: World of warcraft 4.3 slow down after a hour of game

2012-02-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=45760 Bug #: 45760 Summary: World of warcraft 4.3 slow down after a hour of game Classification: Unclassified Product: Mesa Version: 7.11 Platform: x86-64 (AMD64) OS/Version: Linux (All

Re: [PATCH libdrm] radeon_cs_setup_bo: Fix accounting if caller specified write and read domains.

2012-02-08 Thread Alex Deucher
2012/2/8 Michel Dänzer : > From: Michel Dänzer > > Only account for the write domain in that case. > > Should fix https://bugs.freedesktop.org/show_bug.cgi?id=43893 . > > Signed-off-by: Michel Dänzer Reviewed-by: Alex Deucher > --- >  radeon/radeon_cs_space.c |   15 +-- >  1 files

[Bug 45760] World of warcraft 4.3 slow down after a hour of game

2012-02-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45760 --- Comment #1 from Alex Deucher 2012-02-08 05:27:20 PST --- Please attach your xorg log, dmesg output, and glxinfo output. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because:

[PATCH libdrm] radeon_cs_setup_bo: Fix accounting if caller specified write and read domains.

2012-02-08 Thread Michel Dänzer
From: Michel Dänzer Only account for the write domain in that case. Should fix https://bugs.freedesktop.org/show_bug.cgi?id=43893 . Signed-off-by: Michel Dänzer --- radeon/radeon_cs_space.c | 15 +-- 1 files changed, 9 insertions(+), 6 deletions(-) diff --git a/radeon/radeon_cs

[Bug 45760] New: World of warcraft 4.3 slow down after a hour of game

2012-02-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45760 Bug #: 45760 Summary: World of warcraft 4.3 slow down after a hour of game Classification: Unclassified Product: Mesa Version: 7.11 Platform: x86-64 (AMD64) OS/Version: Linux (All

[RFC PATCH] drm/vgem: virtual GEM provider

2012-02-08 Thread Ben Widawsky
7;ve already done it. ~Ben -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 490 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20120208/2fd9a4d3/attachment.pgp>