Re: [PATCH v2 2/2] drm/amd: validate user GEM object size

2018-12-22 Thread kbuild test robot
/linux/commits/Yu-Zhao/drm-amd-validate-user-pitch-alignment/20181222-153630 config: i386-randconfig-h1-12231406 (attached as .config) compiler: gcc-4.9 (Debian 4.9.4-2) 4.9.4 reproduce: # save the attached .config to linux build tree make ARCH=i386 All warnings (new ones prefixed by

Re: [LKP] [bochs] df2052cc92: WARNING:at_drivers/gpu/drm/drm_mode_config.c:#drm_mode_config_cleanup

2018-12-22 Thread Peter Wu
On Fri, Dec 21, 2018 at 11:25:41AM -0800, Linus Torvalds wrote: > On Fri, Dec 21, 2018 at 12:32 AM kernel test robot > wrote: > > > > FYI, we noticed commit df2052cc9221 ("bochs: convert to > > drm_fb_helper_fbdev_setup/teardown") caused > > > > [ 487.591733] WARNING: CPU: 0 PID: 1 at > > driver

[PATCH] drm/fb-helper: fix leaks in error path of drm_fb_helper_fbdev_setup

2018-12-22 Thread Peter Wu
After drm_fb_helper_fbdev_setup calls drm_fb_helper_init, "dev->fb_helper" will be initialized (and thus drm_fb_helper_fini will have some effect). After that, drm_fb_helper_initial_config is called which may call the "fb_probe" driver callback. This driver callback may call drm_fb_helper_defio_in

Re: [PATCH v2 03/11] vga-switcheroo: make PCI dependency explicit

2018-12-22 Thread Sinan Kaya
On Sat, Dec 22, 2018 at 7:40 PM Lukas Wunner wrote: > > On Sat, Dec 22, 2018 at 09:07:12AM +, Sinan Kaya wrote: > > This driver depends on the PCI infrastructure but the dependency has not > > been explicitly called out. > > > > Signed-off-by: Sinan Kaya > > Reviewed-by: Lukas Wunner > > Thi

[Bug 102322] System crashes after "[drm] IP block:gmc_v8_0 is hung!" / [drm] IP block:sdma_v3_0 is hung!

2018-12-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=102322 --- Comment #73 from Jānis Jansons --- Someone suggested I buy Ryzen 2400G APU, but almost every time some network lag happens while watching TV stream through Kodi and FPS of that video goes to 0, display just freezes and you have to power cycl

Re: [PATCH 7/7] drm: Complete remove drm_mode_object dependency

2018-12-22 Thread kbuild test robot
/linux/commits/Shayenne-Moura/drm-Remove-drm_mode_object-dependency-from-drm_display_mode/20181222-065838 base: git://people.freedesktop.org/~robclark/linux msm-next config: i386-randconfig-a3-12211242 (attached as .config) compiler: gcc-4.9 (Debian 4.9.4-2) 4.9.4 reproduce: # save the

[Bug 109135] R9 390 hangs at boot with DPM/DC enabled for kernels 4.19.x and above, says KMS not supported

2018-12-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109135 --- Comment #1 from rmuncr...@humanavance.com --- Created attachment 142875 --> https://bugs.freedesktop.org/attachment.cgi?id=142875&action=edit Example of good amdgpu boot with R9 390. -- You are receiving this mail because: You are the ass

[Bug 109130] 3rd display stays black

2018-12-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109130 --- Comment #1 from Alex Deucher --- Please attach your xorg log, xrandr --verbose output, and dmesg output. Also, are two of the monitors identical? Tonga only has two independent non-DP clock sources so it can only driver two independent set

[Bug 109135] R9 390 hangs at boot with DPM/DC enabled for kernels 4.19.x and above, says KMS not supported

2018-12-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109135 Bug ID: 109135 Summary: R9 390 hangs at boot with DPM/DC enabled for kernels 4.19.x and above, says KMS not supported Product: DRI Version: XOrg git Hardware: x86-64 (AMD6

[Bug 201273] Fatal error during GPU init amdgpu RX560

2018-12-22 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=201273 --- Comment #26 from quirin.blae...@freenet.de --- Bug is still alive. amd-staging-drm-next 0050e1bd9b509dc764c0180ad5010d4591755abf -- You are receiving this mail because: You are watching the assignee of the bug. __

Re: [PATCH v2 03/11] vga-switcheroo: make PCI dependency explicit

2018-12-22 Thread Lukas Wunner
On Sat, Dec 22, 2018 at 09:07:12AM +, Sinan Kaya wrote: > This driver depends on the PCI infrastructure but the dependency has not > been explicitly called out. > > Signed-off-by: Sinan Kaya > Reviewed-by: Lukas Wunner This series doesn't have a cover letter so it's unclear to me through wh

[Bug 202043] amdgpu: Vega 56 SCLK drops to 700 Mhz when undervolting

2018-12-22 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=202043 --- Comment #1 from antiferm...@protonmail.com --- It says > To manually adjust these settings, first select manual using > power_dpm_force_performance_level in the driver source. However, that does not change anything. Setting the powerstate ma

[PATCH][next] drm: fix null pointer dereference on null state pointer

2018-12-22 Thread Colin King
From: Colin Ian King In the case where state cannot be allocated, the current exit path via label 'out' will dereference the null state pointer when calling drm_atomic_state_put. Fix this by adding a new error exit label and jumping to this to avoid the drm_atomic_state_put. Detected by Coverity

[Bug 202043] New: amdgpu: Vega 56 SCLK drops to 700 Mhz when undervolting

2018-12-22 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=202043 Bug ID: 202043 Summary: amdgpu: Vega 56 SCLK drops to 700 Mhz when undervolting Product: Drivers Version: 2.5 Kernel Version: 4.19.8, 4.20.0-rc6 Hardware: All

Re: [PATCH v2 2/2] drm/amd: validate user GEM object size

2018-12-22 Thread kbuild test robot
/linux/commits/Yu-Zhao/drm-amd-validate-user-pitch-alignment/20181222-153630 config: i386-allmodconfig (attached as .config) compiler: gcc-7 (Debian 7.3.0-1) 7.3.0 reproduce: # save the attached .config to linux build tree make ARCH=i386 All warnings (new ones prefixed by >>):

[PATCH v2 03/11] vga-switcheroo: make PCI dependency explicit

2018-12-22 Thread Sinan Kaya
This driver depends on the PCI infrastructure but the dependency has not been explicitly called out. Signed-off-by: Sinan Kaya Reviewed-by: Lukas Wunner --- drivers/gpu/vga/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/vga/Kconfig b/drivers/gpu/vga/Kconfig index b677e5