From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752739AbeEPIJv (ORCPT ); Wed, 16 May 2018 04:09:51 -0400 Received: from mail-ua0-f196.google.com ([209.85.217.196]:46102 "EHLO mail-ua0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751786AbeEPIJs (ORCPT ); Wed, 16 May 2018 04:09:48 -0400 X-Google-Smtp-Source: AB8JxZpNyykppowDh3pqwsFKI1rjTw0xtSfAidZyZSNyasabpHZZEuXdL5lSS/sJXHJSTmwSPQOBBS+jrMVV2PiqHlY= MIME-Version: 1.0 In-Reply-To: <20180516165326.47e96000@canb.auug.org.au> References: <20180516165326.47e96000@canb.auug.org.au> From: Oded Gabbay Date: Wed, 16 May 2018 11:09:16 +0300 Message-ID: Subject: Re: linux-next: build failure after merge of the drm tree To: Stephen Rothwell Cc: Dave Airlie , DRI , Linux-Next Mailing List , Linux Kernel Mailing List , Felix Kuehling Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, May 16, 2018 at 9:53 AM, Stephen Rothwell wrote: > Hi all, > > After merging the drm tree, today's linux-next build (powerpc > allyesconfig) failed like this: > > drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c: In function 'init_user_pages': > drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c:632:3: error: implicit declaration of function 'release_pages'; did you mean 'release_task'? [-Werror=implicit-function-declaration] > release_pages(mem->user_pages, bo->tbo.ttm->num_pages); > ^~~~~~~~~~~~~ > release_task > > Caused by commit > > 5ae0283e831a ("drm/amdgpu: Add userptr support for KFD") > > I have applied the following patch for today: > > From: Stephen Rothwell > Date: Wed, 16 May 2018 16:43:34 +1000 > Subject: [PATCH] drm/amdgpu: include pagemap.h for release_pages() > > Fixes: 5ae0283e831a ("drm/amdgpu: Add userptr support for KFD" > Cc: Felix Kuehling > Cc: Oded Gabbay > Signed-off-by: Stephen Rothwell > --- > drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c > index 72ab2b1ffe75..ff8fd75f7ca5 100644 > --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c > +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c > @@ -23,6 +23,7 @@ > #define pr_fmt(fmt) "kfd2kgd: " fmt > > #include > +#include > #include > #include > #include "amdgpu_object.h" > -- > 2.17.0 > > -- > Cheers, > Stephen Rothwell Thanks Stephen, I'll add it to amdkfd-next and send it to Dave with other fixes. Oded