Re: [PATCH] drm/amdgpu: Don't warn on destroying a pinned BO

2018-07-24 Thread Michel Dänzer
On 2018-07-24 02:47 PM, Christian König wrote: > Am 23.07.2018 um 18:50 schrieb Michel Dänzer: >> On 2018-07-19 05:39 PM, Michel Dänzer wrote: >>> From: Michel Dänzer >>> >>> The warning turned out to be not so useful, as BO destruction tends to >>> be deferred to a workqueue. >>> >>> Also, we

Re: [PATCH] drm/amdgpu: Don't warn on destroying a pinned BO

2018-07-24 Thread Christian König
Am 23.07.2018 um 18:50 schrieb Michel Dänzer: On 2018-07-19 05:39 PM, Michel Dänzer wrote: From: Michel Dänzer The warning turned out to be not so useful, as BO destruction tends to be deferred to a workqueue. Also, we should be preventing any damage from this now, so not really important

Re: [PATCH] drm/amdgpu: Don't warn on destroying a pinned BO

2018-07-23 Thread Mike Lothian
Hi I was hitting this Feel free to add my tested by Tested-by: Mike Lothian Cheers Mike On Mon, 23 Jul 2018 at 17:50 Michel Dänzer wrote: > On 2018-07-19 05:39 PM, Michel Dänzer wrote: > > From: Michel Dänzer > > > > The warning turned out to be not so useful, as BO destruction tends to

Re: [PATCH] drm/amdgpu: Don't warn on destroying a pinned BO

2018-07-23 Thread Alex Deucher
On Mon, Jul 23, 2018 at 12:50 PM, Michel Dänzer wrote: > On 2018-07-19 05:39 PM, Michel Dänzer wrote: >> From: Michel Dänzer >> >> The warning turned out to be not so useful, as BO destruction tends to >> be deferred to a workqueue. >> >> Also, we should be preventing any damage from this now,

Re: [PATCH] drm/amdgpu: Don't warn on destroying a pinned BO

2018-07-23 Thread Michel Dänzer
On 2018-07-19 05:39 PM, Michel Dänzer wrote: > From: Michel Dänzer > > The warning turned out to be not so useful, as BO destruction tends to > be deferred to a workqueue. > > Also, we should be preventing any damage from this now, so not really > important anymore to fix code doing this. > >

[PATCH] drm/amdgpu: Don't warn on destroying a pinned BO

2018-07-19 Thread Michel Dänzer
From: Michel Dänzer The warning turned out to be not so useful, as BO destruction tends to be deferred to a workqueue. Also, we should be preventing any damage from this now, so not really important anymore to fix code doing this. Signed-off-by: Michel Dänzer ---