All of lore.kernel.org
 help / color / mirror / Atom feed
* FAILED: patch "[PATCH] drm/amdgpu: mask out WC from BO on unsupported arches" failed to apply to 4.4-stable tree
@ 2016-03-01 19:39 gregkh
  2016-03-02 10:49 ` Oded Gabbay
  0 siblings, 1 reply; 3+ messages in thread
From: gregkh @ 2016-03-01 19:39 UTC (permalink / raw)
  To: oded.gabbay, alexander.deucher, christian.koenig, michel.daenzer; +Cc: stable


The patch below does not apply to the 4.4-stable tree.
If someone wants it applied there, or to any other stable or longterm
tree, then please email the backport, including the original git commit
id to <stable@vger.kernel.org>.

thanks,

greg k-h

------------------ original commit in Linus's tree ------------------

>From a187f17f0e15a046aa5d7263b35df55230d92779 Mon Sep 17 00:00:00 2001
From: Oded Gabbay <oded.gabbay@gmail.com>
Date: Sat, 30 Jan 2016 07:59:34 +0200
Subject: [PATCH] drm/amdgpu: mask out WC from BO on unsupported arches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Reviewed-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
index a2a16acee34d..b8fbbd7699e4 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
@@ -33,6 +33,7 @@
 #include <linux/slab.h>
 #include <drm/drmP.h>
 #include <drm/amdgpu_drm.h>
+#include <drm/drm_cache.h>
 #include "amdgpu.h"
 #include "amdgpu_trace.h"
 
@@ -261,6 +262,13 @@ int amdgpu_bo_create_restricted(struct amdgpu_device *adev,
 				       AMDGPU_GEM_DOMAIN_OA);
 
 	bo->flags = flags;
+
+	/* For architectures that don't support WC memory,
+	 * mask out the WC flag from the BO
+	 */
+	if (!drm_arch_can_wc_memory())
+		bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC;
+
 	amdgpu_fill_placement_to_bo(bo, placement);
 	/* Kernel allocation are uninterruptible */
 	r = ttm_bo_init(&adev->mman.bdev, &bo->tbo, size, type,


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: FAILED: patch "[PATCH] drm/amdgpu: mask out WC from BO on unsupported arches" failed to apply to 4.4-stable tree
  2016-03-01 19:39 FAILED: patch "[PATCH] drm/amdgpu: mask out WC from BO on unsupported arches" failed to apply to 4.4-stable tree gregkh
@ 2016-03-02 10:49 ` Oded Gabbay
  2016-03-02 12:00   ` Oded Gabbay
  0 siblings, 1 reply; 3+ messages in thread
From: Oded Gabbay @ 2016-03-02 10:49 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Alex Deucher, Christian König, Daenzer, Michel, stable

On Tue, Mar 1, 2016 at 9:39 PM,  <gregkh@linuxfoundation.org> wrote:
>
> The patch below does not apply to the 4.4-stable tree.
> If someone wants it applied there, or to any other stable or longterm
> tree, then please email the backport, including the original git commit
> id to <stable@vger.kernel.org>.
>
> thanks,
>
> greg k-h

Hi Greg,
I went now to solving this, but when I tried to apply
a187f17f0e15a046aa5d7263b35df55230d92779 to the HEAD of linux-4.4.y
branch (last commit I see there is 2134d97 Linux 4.4.3), it applied
cleanly.

I'm not sure how to continue from here.

Oded

>
> ------------------ original commit in Linus's tree ------------------
>
> From a187f17f0e15a046aa5d7263b35df55230d92779 Mon Sep 17 00:00:00 2001
> From: Oded Gabbay <oded.gabbay@gmail.com>
> Date: Sat, 30 Jan 2016 07:59:34 +0200
> Subject: [PATCH] drm/amdgpu: mask out WC from BO on unsupported arches
> MIME-Version: 1.0
> Content-Type: text/plain; charset=UTF-8
> Content-Transfer-Encoding: 8bit
>
> Reviewed-by: Christian König <christian.koenig@amd.com>
> Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
> Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
> Cc: stable@vger.kernel.org
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
> index a2a16acee34d..b8fbbd7699e4 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
> @@ -33,6 +33,7 @@
>  #include <linux/slab.h>
>  #include <drm/drmP.h>
>  #include <drm/amdgpu_drm.h>
> +#include <drm/drm_cache.h>
>  #include "amdgpu.h"
>  #include "amdgpu_trace.h"
>
> @@ -261,6 +262,13 @@ int amdgpu_bo_create_restricted(struct amdgpu_device *adev,
>                                        AMDGPU_GEM_DOMAIN_OA);
>
>         bo->flags = flags;
> +
> +       /* For architectures that don't support WC memory,
> +        * mask out the WC flag from the BO
> +        */
> +       if (!drm_arch_can_wc_memory())
> +               bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC;
> +
>         amdgpu_fill_placement_to_bo(bo, placement);
>         /* Kernel allocation are uninterruptible */
>         r = ttm_bo_init(&adev->mman.bdev, &bo->tbo, size, type,
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: FAILED: patch "[PATCH] drm/amdgpu: mask out WC from BO on unsupported arches" failed to apply to 4.4-stable tree
  2016-03-02 10:49 ` Oded Gabbay
@ 2016-03-02 12:00   ` Oded Gabbay
  0 siblings, 0 replies; 3+ messages in thread
From: Oded Gabbay @ 2016-03-02 12:00 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Alex Deucher, Christian König, Daenzer, Michel, stable

On Wed, Mar 2, 2016 at 12:49 PM, Oded Gabbay <oded.gabbay@gmail.com> wrote:
> On Tue, Mar 1, 2016 at 9:39 PM,  <gregkh@linuxfoundation.org> wrote:
>>
>> The patch below does not apply to the 4.4-stable tree.
>> If someone wants it applied there, or to any other stable or longterm
>> tree, then please email the backport, including the original git commit
>> id to <stable@vger.kernel.org>.
>>
>> thanks,
>>
>> greg k-h
>
> Hi Greg,
> I went now to solving this, but when I tried to apply
> a187f17f0e15a046aa5d7263b35df55230d92779 to the HEAD of linux-4.4.y
> branch (last commit I see there is 2134d97 Linux 4.4.3), it applied
> cleanly.
>
> I'm not sure how to continue from here.
>
> Oded
>
Nevermind, I resent the patch anyway, rebased on top of linux-4.4.y

Oded

>>
>> ------------------ original commit in Linus's tree ------------------
>>
>> From a187f17f0e15a046aa5d7263b35df55230d92779 Mon Sep 17 00:00:00 2001
>> From: Oded Gabbay <oded.gabbay@gmail.com>
>> Date: Sat, 30 Jan 2016 07:59:34 +0200
>> Subject: [PATCH] drm/amdgpu: mask out WC from BO on unsupported arches
>> MIME-Version: 1.0
>> Content-Type: text/plain; charset=UTF-8
>> Content-Transfer-Encoding: 8bit
>>
>> Reviewed-by: Christian König <christian.koenig@amd.com>
>> Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
>> Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
>> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
>> Cc: stable@vger.kernel.org
>>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
>> index a2a16acee34d..b8fbbd7699e4 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
>> @@ -33,6 +33,7 @@
>>  #include <linux/slab.h>
>>  #include <drm/drmP.h>
>>  #include <drm/amdgpu_drm.h>
>> +#include <drm/drm_cache.h>
>>  #include "amdgpu.h"
>>  #include "amdgpu_trace.h"
>>
>> @@ -261,6 +262,13 @@ int amdgpu_bo_create_restricted(struct amdgpu_device *adev,
>>                                        AMDGPU_GEM_DOMAIN_OA);
>>
>>         bo->flags = flags;
>> +
>> +       /* For architectures that don't support WC memory,
>> +        * mask out the WC flag from the BO
>> +        */
>> +       if (!drm_arch_can_wc_memory())
>> +               bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC;
>> +
>>         amdgpu_fill_placement_to_bo(bo, placement);
>>         /* Kernel allocation are uninterruptible */
>>         r = ttm_bo_init(&adev->mman.bdev, &bo->tbo, size, type,
>>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-03-02 12:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-01 19:39 FAILED: patch "[PATCH] drm/amdgpu: mask out WC from BO on unsupported arches" failed to apply to 4.4-stable tree gregkh
2016-03-02 10:49 ` Oded Gabbay
2016-03-02 12:00   ` Oded Gabbay

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.