From: Colin Ian King <colin.king(a)canonical.com>
ret is not being initialized, so there is a possibility that
a garbage value is being returned by kv_dpm_late_enable().
Initialize ret to 0 to fix this.
Signed-off-by: Colin Ian King <colin.king(a)canonical.com>
---
drivers/gpu/drm/radeon/kv_dpm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/radeon/kv_dpm.c b/drivers/gpu/drm/radeon/kv_dpm.c
index b6e01d5..351db36 100644
--- a/drivers/gpu/drm/…
[View More]radeon/kv_dpm.c
+++ b/drivers/gpu/drm/radeon/kv_dpm.c
@@ -1223,7 +1223,7 @@ int kv_dpm_enable(struct radeon_device *rdev)
int kv_dpm_late_enable(struct radeon_device *rdev)
{
- int ret;
+ int ret = 0;
if (rdev->irq.installed &&
r600_is_internal_thermal_sensor(rdev->pm.int_thermal_type)) {
--
1.9.rc1
[View Less]
https://bugs.freedesktop.org/show_bug.cgi?id=73911
--- Comment #13 from Alex Deucher <agd5f(a)yahoo.com> ---
(In reply to comment #12)
> Hi I am having the same issue with Banding using the open source Radeon
> Driver.
> My laptop is an Acer Acpire 5560G with Radeon HD6520G + 7470M I have tryed a
> few different Distros and I get the same Banding problems at the moment I
> have Ubuntu-Gnome 14.04 2.13 kernel and Fedora 20 3.12 Kernel
Can you try the patch in comment 10?
…
[View More]
--
You are receiving this mail because:
You are the assignee for the bug.
[View Less]
The following changes since commit ef64cf9d06049e4e9df661f3be60b217e476bee1:
Merge branch 'drm-nouveau-next' of
git://anongit.freedesktop.org/git/nouveau/linux-2.6 into drm-next
(2014-01-30 10:46:06 +1000)
are available in the git repository at:
git://people.freedesktop.org/~robclark/linux msm-next
for you to fetch changes up to 9999f105e76977d97304d7cb2030a52d96800d69:
drm/msm: fix deadlock in bo create fail path (2014-02-05 11:24:42 -0500)
------------------------------------------…
[View More]----------------------
Rob Clark (5):
drm/msm: fix inconsequential typo
drm/msm/mdp5: fix ref leaks in error paths
drm/msm/mdp4: pageflip fixes
drm/msm/mdp4: cursor fixes
drm/msm: fix deadlock in bo create fail path
drivers/gpu/drm/msm/mdp/mdp4/mdp4_crtc.c | 179 +++++++++++++++++++-----------
drivers/gpu/drm/msm/mdp/mdp4/mdp4_plane.c | 4 +-
drivers/gpu/drm/msm/mdp/mdp5/mdp5_crtc.c | 7 +-
drivers/gpu/drm/msm/msm_gem.c | 2 +-
4 files changed, 125 insertions(+), 67 deletions(-)
[View Less]
Hi Dave,
Just minor stuff really, on vlv dp fix and two patches to tune down some
opregion sanity check. Plus MAINTAINERS update for the new git repo, which
is the only reason I've really bothered with this pull request.
Cheers, Daniel
The following changes since commit ec14ba47791965d2c08e0a681ff44eacbf3c4553:
drm/i915: Fix the offset issue for the stolen GEM objects (2014-01-28 09:04:42 +0100)
are available in the git repository at:
ssh://git.freedesktop.org/git/drm-intel tags/drm-…
[View More]intel-fixes-2014-02-06
for you to fetch changes up to bdde5c6a258a702bdfa7d1f4ae804a7bc405e788:
drm/i915: demote opregion excessive timeout WARN_ONCE to DRM_INFO_ONCE (2014-02-04 21:10:45 +0100)
----------------------------------------------------------------
Daniel Vetter (1):
MAINTAINERS: Update drm/i915 git repo
Imre Deak (1):
drm/i915: vlv: fix DP PHY lockup due to invalid PP sequencer setup
Jani Nikula (2):
drm: add DRM_INFO_ONCE() to print a one-time DRM_INFO() message
drm/i915: demote opregion excessive timeout WARN_ONCE to DRM_INFO_ONCE
MAINTAINERS | 2 +-
drivers/gpu/drm/i915/intel_dp.c | 10 ++++++----
drivers/gpu/drm/i915/intel_opregion.c | 9 ++++++---
include/drm/drmP.h | 3 +++
4 files changed, 16 insertions(+), 8 deletions(-)
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
[View Less]
Hi Linus,
a few regression fixes already, one for my own stupidity, and mgag200 typo
fix, vmwgfx fixes and ttm regression fixes, and a radeon register checker
update for older cards to handle geom shaders.
Dave.
The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
are available in the git repository at:
git://people.freedesktop.org/~airlied/linux drm-fixes
for you to fetch changes up to …
[View More]7c4c62a04a2a80e3feb5d6c97aca1e413b11c790:
drm/radeon: allow geom rings to be setup on r600/r700 (v2) (2014-02-06 12:13:52 +1000)
----------------------------------------------------------------
Dave Airlie (5):
drm/mgag200: fix typo causing bw limits to be ignored on some chips
drm/mgag200,ast,cirrus: fix regression with drm_can_sleep conversion
Merge tag 'ttm-fixes-3.14-2014-02-05' of git://people.freedesktop.org/~thomash/linux into drm-next
Merge tag 'vmwgfx-fixes-3.14-2014-02-05' of git://people.freedesktop.org/~thomash/linux into drm-next
drm/radeon: allow geom rings to be setup on r600/r700 (v2)
Dave Jones (1):
vmwgfx: Fix unitialized stack read in vmw_setup_otable_base
Thomas Hellstrom (9):
drm/vmwgfx: Don't commit staged bindings if execbuf fails
drm/vmwgfx: Fix regression caused by "drm/ttm: make ttm reservation calls behave like reservation calls"
drm/vmwgfx: Fix SET_SHADER_CONST emulation on guest-backed devices
drm/vmwgfx: Fix legacy surface reference size copyback
drm/vmwgfx: Emulate legacy shaders on guest-backed devices v2
drm/vmwgfx: Detect old user-space drivers and set up legacy emulation v2
drm/vmwgfx: Reemit context bindings when necessary v2
drm/ttm: Fix TTM object open regression
drm/ttm: Don't clear page metadata of imported sg pages
drivers/gpu/drm/ast/ast_fb.c | 2 +-
drivers/gpu/drm/cirrus/cirrus_fbdev.c | 2 +-
drivers/gpu/drm/mgag200/mgag200_fb.c | 2 +-
drivers/gpu/drm/mgag200/mgag200_mode.c | 4 +-
drivers/gpu/drm/radeon/r600_cs.c | 18 +-
drivers/gpu/drm/radeon/radeon_drv.c | 3 +-
drivers/gpu/drm/radeon/reg_srcs/r600 | 1 +
drivers/gpu/drm/ttm/ttm_object.c | 2 +-
drivers/gpu/drm/ttm/ttm_tt.c | 3 +
drivers/gpu/drm/vmwgfx/svga3d_reg.h | 24 ++
drivers/gpu/drm/vmwgfx/vmwgfx_context.c | 144 ++++++++--
drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | 7 +
drivers/gpu/drm/vmwgfx/vmwgfx_drv.h | 35 ++-
drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c | 330 +++++++++++++++++++---
drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c | 93 ++++--
drivers/gpu/drm/vmwgfx/vmwgfx_mob.c | 1 +
drivers/gpu/drm/vmwgfx/vmwgfx_resource.c | 11 +-
drivers/gpu/drm/vmwgfx/vmwgfx_shader.c | 467 +++++++++++++++++++++++++++----
drivers/gpu/drm/vmwgfx/vmwgfx_surface.c | 6 +-
19 files changed, 1016 insertions(+), 139 deletions(-)
[View Less]
https://bugs.freedesktop.org/show_bug.cgi?id=73911
--- Comment #12 from rue <ru1812(a)gmail.com> ---
Hi I am having the same issue with Banding using the open source Radeon Driver.
My laptop is an Acer Acpire 5560G with Radeon HD6520G + 7470M I have tryed a
few different Distros and I get the same Banding problems at the moment I have
Ubuntu-Gnome 14.04 2.13 kernel and Fedora 20 3.12 Kernel
NOTE: I have noticed the Banding only happens on the built in Laptop Screen if
I attach an …
[View More]external Monitor either VGA or HDMI the displays on those monitors
are fine, no Banding.
Running xwininfo shows my Depth is 24 bit I originally thought that may have
been set to 15.
--
You are receiving this mail because:
You are the assignee for the bug.
[View Less]
Hi, fellow graphics stack developers,
Now that FOSDEM is over, it is time to think about the
Google Summer of Code 2014!
If you would like to propose a project for the GSoC 2014, please
write your proposals at [1], before the 14th of February, in order
to increase our chances of being an accepted organization.
If you simply would potentially be interested in being a mentor,
please also contact me as Google wants to have an estimate of
the number of potential mentors we would have.
If you …
[View More]have any questions regarding the GSoC or need any additional
information, please answer in this thread.
Cheers,
Martin
[1] http://xorg.freedesktop.org/wiki/SummerOfCodeIdeas/
[View Less]
https://bugs.freedesktop.org/show_bug.cgi?id=70706
--- Comment #17 from Eugene Shalygin <eugene.shalygin+bugzilla.FDO(a)gmail.com> ---
In my case "Module" section is empty and I have the issue.
X.Org X Server 1.15.0
xf86-vide0-ati, module version = 7.3.99
Mesa 10.1.0-devel (git-023a50d), r600g driver
--
You are receiving this mail because:
You are on the CC list for the bug.