[Bug 34632] RV300 clutter test_texture_pick_with_alpha: assertion failed

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34632 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[PATCH v6 19/24] vfio, mm: pin_user_pages (FOLL_PIN) and put_user_page() conversion

2019-11-19 Thread John Hubbard
1. Change vfio from get_user_pages_remote(), to pin_user_pages_remote(). 2. Because all FOLL_PIN-acquired pages must be released via put_user_page(), also convert the put_page() call over to put_user_pages_dirty_lock(). Note that this effectively changes the code's behavior in

[Bug 32970] [switchable] Xorg usually hangs up system on start

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=32970 Martin Peres changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|---

[Bug 34626] Mesa-Gallium with R600 - Framerate limited to 60 fps after suspend-cycle

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34626 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[PATCH v6 17/24] mm/gup: track FOLL_PIN pages

2019-11-19 Thread John Hubbard
Add tracking of pages that were pinned via FOLL_PIN. As mentioned in the FOLL_PIN documentation, callers who effectively set FOLL_PIN are required to ultimately free such pages via put_user_page(). The effect is similar to FOLL_GET, and may be thought of as "FOLL_GET for DIO and/or RDMA use".

[PATCH v6 22/24] mm/gup_benchmark: support pin_user_pages() and related calls

2019-11-19 Thread John Hubbard
Up until now, gup_benchmark supported testing of the following kernel functions: * get_user_pages(): via the '-U' command line option * get_user_pages_longterm(): via the '-L' command line option * get_user_pages_fast(): as the default (no options required) Add test coverage for the new

[PATCH v6 24/24] mm, tree-wide: rename put_user_page*() to unpin_user_page*()

2019-11-19 Thread John Hubbard
In order to provide a clearer, more symmetric API for pinning and unpinning DMA pages. This way, pin_user_pages*() calls match up with unpin_user_pages*() calls, and the API is a lot closer to being self-explanatory. Signed-off-by: John Hubbard --- Documentation/core-api/pin_user_pages.rst |

[PATCH v6 16/24] net/xdp: set FOLL_PIN via pin_user_pages()

2019-11-19 Thread John Hubbard
Convert net/xdp to use the new pin_longterm_pages() call, which sets FOLL_PIN. Setting FOLL_PIN is now required for code that requires tracking of pinned pages. In partial anticipation of this work, the net/xdp code was already calling put_user_page() instead of put_page(). Therefore, in order to

[PATCH v6 20/24] powerpc: book3s64: convert to pin_user_pages() and put_user_page()

2019-11-19 Thread John Hubbard
1. Convert from get_user_pages() to pin_user_pages(). 2. As required by pin_user_pages(), release these pages via put_user_page(). In this case, do so via put_user_pages_dirty_lock(). That has the side effect of calling set_page_dirty_lock(), instead of set_page_dirty(). This is probably more

[PATCH v6 07/24] IB/umem: use get_user_pages_fast() to pin DMA pages

2019-11-19 Thread John Hubbard
And get rid of the mmap_sem calls, as part of that. Note that get_user_pages_fast() will, if necessary, fall back to __gup_longterm_unlocked(), which takes the mmap_sem as needed. Reviewed-by: Jan Kara Reviewed-by: Jason Gunthorpe Reviewed-by: Ira Weiny Signed-off-by: John Hubbard ---

[Bug 33681] Random system lockup with KMS, Mobility Radeon HD3470

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33681 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[PATCH v6 09/24] vfio, mm: fix get_user_pages_remote() and FOLL_LONGTERM

2019-11-19 Thread John Hubbard
As it says in the updated comment in gup.c: current FOLL_LONGTERM behavior is incompatible with FAULT_FLAG_ALLOW_RETRY because of the FS DAX check requirement on vmas. However, the corresponding restriction in get_user_pages_remote() was slightly stricter than is actually required: it forbade all

[PATCH v6 08/24] media/v4l2-core: set pages dirty upon releasing DMA buffers

2019-11-19 Thread John Hubbard
After DMA is complete, and the device and CPU caches are synchronized, it's still required to mark the CPU pages as dirty, if the data was coming from the device. However, this driver was just issuing a bare put_page() call, without any set_page_dirty*() call. Fix the problem, by calling

[Bug 101213] Kernel 4.11: amdgpu regression causes artifacts with OLAND amd gpu gcn 1.0

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=101213 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|REOPENED

[Bug 33301] [RADEON:KMS:R600:DYNPM] dynpm doesn't downclock

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33301 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[PATCH v6 11/24] goldish_pipe: convert to pin_user_pages() and put_user_page()

2019-11-19 Thread John Hubbard
1. Call the new global pin_user_pages_fast(), from pin_goldfish_pages(). 2. As required by pin_user_pages(), release these pages via put_user_page(). In this case, do so via put_user_pages_dirty_lock(). That has the side effect of calling set_page_dirty_lock(), instead of set_page_dirty(). This

[PATCH v6 12/24] IB/{core, hw, umem}: set FOLL_PIN via pin_user_pages*(), fix up ODP

2019-11-19 Thread John Hubbard
Convert infiniband to use the new pin_user_pages*() calls. Also, revert earlier changes to Infiniband ODP that had it using put_user_page(). ODP is "Case 3" in Documentation/core-api/pin_user_pages.rst, which is to say, normal get_user_pages() and put_page() is the API to use there. The new

[PATCH v6 10/24] mm/gup: introduce pin_user_pages*() and FOLL_PIN

2019-11-19 Thread John Hubbard
Introduce pin_user_pages*() variations of get_user_pages*() calls, and also pin_longterm_pages*() variations. For now, these are placeholder calls, until the various call sites are converted to use the correct get_user_pages*() or pin_user_pages*() API. These variants will eventually all set

[PATCH v6 05/24] mm: devmap: refactor 1-based refcounting for ZONE_DEVICE pages

2019-11-19 Thread John Hubbard
An upcoming patch changes and complicates the refcounting and especially the "put page" aspects of it. In order to keep everything clean, refactor the devmap page release routines: * Rename put_devmap_managed_page() to page_is_devmap_managed(), and limit the functionality to "read only": return

[Bug 32319] Display fades to white screen instead of blanking out in DPMS mode on a Sony Vaio VPCEC3L1E

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=32319 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[PATCH v6 14/24] drm/via: set FOLL_PIN via pin_user_pages_fast()

2019-11-19 Thread John Hubbard
Convert drm/via to use the new pin_user_pages_fast() call, which sets FOLL_PIN. Setting FOLL_PIN is now required for code that requires tracking of pinned pages, and therefore for any code that calls put_user_page(). In partial anticipation of this work, the drm/via driver was already calling

[PATCH v6 18/24] media/v4l2-core: pin_user_pages (FOLL_PIN) and put_user_page() conversion

2019-11-19 Thread John Hubbard
1. Change v4l2 from get_user_pages() to pin_user_pages(). 2. Because all FOLL_PIN-acquired pages must be released via put_user_page(), also convert the put_page() call over to put_user_pages_dirty_lock(). Acked-by: Hans Verkuil Cc: Ira Weiny Signed-off-by: John Hubbard ---

[PATCH v6 13/24] mm/process_vm_access: set FOLL_PIN via pin_user_pages_remote()

2019-11-19 Thread John Hubbard
Convert process_vm_access to use the new pin_user_pages_remote() call, which sets FOLL_PIN. Setting FOLL_PIN is now required for code that requires tracking of pinned pages. Also, release the pages via put_user_page*(). Also, rename "pages" to "pinned_pages", as this makes for easier reading of

[PATCH v6 02/24] mm/gup: factor out duplicate code from four routines

2019-11-19 Thread John Hubbard
There are four locations in gup.c that have a fair amount of code duplication. This means that changing one requires making the same changes in four places, not to mention reading the same code four times, and wondering if there are subtle differences. Factor out the common code into static

[Bug 32399] KMS:RS480:X200M LCD Monitor on VGA-0 shows wavy picture

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=32399 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[PATCH v6 04/24] mm: Cleanup __put_devmap_managed_page() vs ->page_free()

2019-11-19 Thread John Hubbard
From: Dan Williams After the removal of the device-public infrastructure there are only 2 ->page_free() call backs in the kernel. One of those is a device-private callback in the nouveau driver, the other is a generic wakeup needed in the DAX case. In the hopes that all ->page_free() callbacks

[PATCH v6 06/24] goldish_pipe: rename local pin_user_pages() routine

2019-11-19 Thread John Hubbard
1. Avoid naming conflicts: rename local static function from "pin_user_pages()" to "pin_goldfish_pages()". An upcoming patch will introduce a global pin_user_pages() function. Reviewed-by: Jan Kara Reviewed-by: Jérôme Glisse Reviewed-by: Ira Weiny Signed-off-by: John Hubbard ---

[PATCH v6 00/24] mm/gup: track dma-pinned pages: FOLL_PIN

2019-11-19 Thread John Hubbard
Hi, Christoph Hellwig has a preference to do things a little differently, for the devmap cleanup in patch 5 ("mm: devmap: refactor 1-based refcounting for ZONE_DEVICE pages"). That came up in a different review thread, because the patch is out for review in two locations. Here's that review

[PATCH v6 03/24] mm/gup: move try_get_compound_head() to top, fix minor issues

2019-11-19 Thread John Hubbard
An upcoming patch uses try_get_compound_head() more widely, so move it to the top of gup.c. Also fix a tiny spelling error and a checkpatch.pl warning. Reviewed-by: Jan Kara Reviewed-by: Ira Weiny Signed-off-by: John Hubbard --- mm/gup.c | 29 +++-- 1 file changed, 15

[Bug 101026] RX 550 HDMI 4k 60fps not working, DisplayPort is.

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=101026 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[PATCH v6 01/24] mm/gup: pass flags arg to __gup_device_* functions

2019-11-19 Thread John Hubbard
A subsequent patch requires access to gup flags, so pass the flags argument through to the __gup_device_* functions. Also placate checkpatch.pl by shortening a nearby line. Reviewed-by: Jan Kara Reviewed-by: Jérôme Glisse Reviewed-by: Ira Weiny Cc: Kirill A. Shutemov Signed-off-by: John

[Bug 100964] RX-480 [drm:gfx_v8_0_ring_test_ring [amdgpu]] *ERROR* amdgpu: ring 0 test failed (scratch(0xC040)=0xCAFEDEAD)

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100964 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 30227] [RADEON:KMS:AGP:R300:PPC] random X freeze by a GPU lockup

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30227 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 30620] [RADEON:KMS:RS100:MODESET] no display on VGA

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 101001] [DC][bisected] Random screen locks on RX460

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=101001 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 100745] amdgpu fails to wake up DisplayPort DELL monitors with 'clock recovery failed'

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100745 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 31230] [RADEON:KMS:RV250:RESUME] corrupted screen after resume

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31230 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 100726] [REGRESSION][BISECTED] Severe flickering with an R9 290

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100726 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|REOPENED

[Bug 100891] failed to send pre message kernel output delays booting/suspending/resuming

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100891 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 30325] [RADEON:KMS:RS780:MODESET] video=1280x720@50 no longer works

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30325 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 31213] [RADEON:KMS:RV370:INIT] [drm] cp init fail (any kernels 2.6.3x.x)

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31213 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEEDINFO

[Bug 100949] Black screen, DP link training errors

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100949 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 100742] dpm auto doesn't clock the GPU high enough for SteamVR apps

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100742 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 29787] [RADEON:KMS::EDID] i2c bit banging + preempt kernel -> i2c failure (random XRandR failures)

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29787 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 29445] Linux 2.6.34 kernel Radeon KMS driver freezes my computer sometimes

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29445 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 100460] AMDGPU system hang with Slic3r Prusa Edition

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100460 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 29941] radeon/KMS: Screen hotplugging does not work

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29941 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 100591] [AMD APU A9-9410] Kernel hang when using graphics acceleration

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100591 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 100666] amdgpu coolers never stoping linux

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100666 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 29579] 2.6.35 with RV630 AGP does not enable KMS/DRM

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29579 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 100399] Kernel invalid opcode on unbinding amdgpu

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100399 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 99967] RX 480 sclk clock speed lowers when under load

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=99967 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 100058] amdgpu/dpm: NULL pointer dereference

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100058 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 99907] linux-firmware 2017-02-17 update causes varying breaks in AMDGPU for recent cards

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=99907 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 28928] [ati-dri] R100 OpenGL Crash buffer overflow

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28928 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 99801] Rx480 doesn't output properly onto z27q at 5120x2880

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=99801 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|REOPENED

[Bug 28940] rv515 (Mobility x1400) Display corruption after some time

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28940 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 99815] Power management problems & kernel hangs with Cap Verde

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=99815 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 29026] [RADEON:KMS:RV670:MODESET] garbled screen after resuming from suspend

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29026 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 29095] RC410: 3D apps do not run after upgrade to 2.6.35-rc5

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29095 Martin Peres changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|---

[Bug 28520] X: page allocation failure. 2.6.35-rc3

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28520 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 29217] After pm-suspend the second monitor shows garbled output on evergreen card (kms)

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29217 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 28373] DRM lockup on X startup

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28373 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 28490] page allocation failure with 2.6.35-rc2

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28490 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 28426] hardware cursor corruption with radeon+kms

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28426 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|REOPENED

[Bug 99779] Lenovo Thinkpad E450 (Kaveri A6-7000 Radeon R4) Blank Screen after suspend (displayport link issues)

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=99779 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 28600] The LXterminal Window TitleBar does not show up when KMS is enabled

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28600 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 99680] VM/GPU fault on 4.10-rc6 (Kaveri + Topaz)

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=99680 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 29001] latest d-r-t has regular X crashes

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29001 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 99459] Performace drop on AMD TONGA(380x) on kernels 4.9 and 4.10RC3

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=99459 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 99313] A few amdgpu errors with kernel 4.10-rc2 (Kaveri + Topaz)

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=99313 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 28030] HDMI audio does not work with HD4200 IGP but does work with radeonhd

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28030 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 28069] maniadrive - smooth play with LIBGL_ALWAYS_INDIRECT=true, (almost) unplayable otherwise

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28069 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 28217] Black screen and crash on r600 with radeon module not loaded

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28217 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 99264] Deterministic crash on RX460 "NULL pointer dereference"

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=99264 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 27438] [RADEON:KMS:RV730:ATOMBIOS] stuck atombios 2.6.34-rc3-git1

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=27438 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 27609] Regression: r600 CS checker rejects narrow FBO renderbuffers.

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=27609 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 27314] displayport link training fails on certain panels (channel equalization fails)

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=27314 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 98901] amdgpu doesn't reinitialize after reboot in Xen PV DomU

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=98901 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 99143] r9 390: Hardware cursor invisible after hibernate/resume

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=99143 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|REOPENED

[Bug 27522] rendering of large vtk datasets very slow

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=27522 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 99275] Kernel 4.9: amdgpu regression; gui flickers; amd radeon rx 460

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=99275 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 27332] Problem with libopencascade - salome-platform

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=27332 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 98730] On kernel startup, all monitors will go blank and stay blank with newest amd-staging-4.7

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=98730 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 98461] Radeon and 5k resolution 5120x2880 = corrupted image

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=98461 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 98513] [AMDGPU][CIK] Unable to hibernate functionality is not stable

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=98513 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 98183] [amdgpu SI] "gpu fault detect" in Alien: Isolation

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=98183 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 98417] TTM broken on 4.9-rc2

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=98417 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEEDINFO

[Bug 27184] Radeon, KMS, 6.12.99: Sleeping screen doesn't wake up reliably

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=27184 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 98333] 4K @ 60Hz over HDMI 2.0 not working with AMDGPU-DAL

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=98333 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 98276] Kernel Panic on shutdown caused by "drm/amdgpu: always apply pci shutdown callbacks"

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=98276 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 98324] [DC] amd-staging-4.7: problems with unblanking displays when monitors are switched off

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=98324 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 27206] Blurred screen with latest drm-next-radeon and KMS

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=27206 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 26817] Machine crashes on large screen updates.

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=26817 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 26872] Kernel 2.6.33 fails to suspend (bisected)

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=26872 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 97634] [amdgpu SI] multigpu setup crashes during boot when dpm=1

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=97634 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 26403] X crashes on startup with KMS (Alpha architecture)

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=26403 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 97861] [amdgpu SI] purple line is visible on left side of the screen connected by HDMI

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=97861 Martin Peres changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 26426] Xserver crash on r600SetTexOffset with 3d effects enabled

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=26426 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

[Bug 26459] False Output detection.

2019-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=26459 Martin Peres changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

<    5   6   7   8   9   10   11   12   >