linux-next: build failure after merge of the drm tree

2021-04-08 Thread Stephen Rothwell
Hi all, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/i915/display/intel_dp_link_training.c:43:13: error: redefinition of 'intel_dp_reset_lttpr_common_caps' 43 | static void intel_dp_reset_lttpr_common_caps(struct intel_dp *intel_

Re: linux-next: build failure after merge of the drm tree

2021-01-20 Thread Stephen Rothwell
Hi Daniel, On Wed, 20 Jan 2021 13:12:21 +0100 Daniel Vetter wrote: > > I've pulled drm-misc-next into drm-next now, so as long as all other > drm trees are merged after drm, this should be solved now. > drm-intel-next also has their msm build breakage fixed (I acked the > patch already), so hopef

Re: linux-next: build failure after merge of the drm tree

2021-01-20 Thread Daniel Vetter
On Mon, Jan 18, 2021 at 2:06 AM Dave Airlie wrote: > > On Mon, 18 Jan 2021 at 10:59, Stephen Rothwell wrote: > > > > Hi all, > > > > On Mon, 11 Jan 2021 10:56:54 +1100 Stephen Rothwell > > wrote: > > > > > > On Fri, 8 Jan 2021 12:25:40 +1100 Stephen Rothwell > > > wrote: > > > > > > > > On Fr

Re: linux-next: build failure after merge of the drm tree

2021-01-17 Thread Dave Airlie
On Mon, 18 Jan 2021 at 10:59, Stephen Rothwell wrote: > > Hi all, > > On Mon, 11 Jan 2021 10:56:54 +1100 Stephen Rothwell > wrote: > > > > On Fri, 8 Jan 2021 12:25:40 +1100 Stephen Rothwell > > wrote: > > > > > > On Fri, 8 Jan 2021 11:55:18 +1100 Stephen Rothwell > > > wrote: > > > > > > > >

Re: linux-next: build failure after merge of the drm tree

2021-01-17 Thread Stephen Rothwell
Hi all, On Mon, 11 Jan 2021 10:56:54 +1100 Stephen Rothwell wrote: > > On Fri, 8 Jan 2021 12:25:40 +1100 Stephen Rothwell > wrote: > > > > On Fri, 8 Jan 2021 11:55:18 +1100 Stephen Rothwell > > wrote: > > > > > > After merging the drm tree, today's linux-next build (x86_64 allmodconfig) >

Re: linux-next: build failure after merge of the drm tree

2021-01-10 Thread Stephen Rothwell
Hi all, On Fri, 8 Jan 2021 12:25:40 +1100 Stephen Rothwell wrote: > > On Fri, 8 Jan 2021 11:55:18 +1100 Stephen Rothwell > wrote: > > > > After merging the drm tree, today's linux-next build (x86_64 allmodconfig) > > failed like this: > > > > error: the following would cause module name confl

Re: linux-next: build failure after merge of the drm tree

2021-01-07 Thread Stephen Rothwell
Hi all, On Fri, 8 Jan 2021 11:55:18 +1100 Stephen Rothwell wrote: > > Hi all, > > After merging the drm tree, today's linux-next build (x86_64 allmodconfig) > failed like this: > > error: the following would cause module name conflict: > drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm

linux-next: build failure after merge of the drm tree

2021-01-07 Thread Stephen Rothwell
Hi all, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: error: the following would cause module name conflict: drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko drivers/gpu/drm/panel/panel-dsi-cm.ko Maybe caused by commit cf64148abcfd (

linux-next: build failure after merge of the drm tree

2020-12-08 Thread Stephen Rothwell
Hi all, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/i915/gt/intel_mocs.c: In function 'get_mocs_settings': drivers/gpu/drm/i915/gt/intel_mocs.c:363:22: error: 'GEN11_NUM_MOCS_ENTRIES' undeclared (first use in this function); did yo

Re: linux-next: build failure after merge of the drm tree

2020-09-30 Thread Christoph Hellwig
On Wed, Sep 30, 2020 at 06:45:02PM +0200, Paul Cercueil wrote: >> We don't have such a thing in the Linux API at all. > > dma_pgprot(dev, vma->vm_page_prot, DMA_ATTR_NON_CONSISTENT); > > That was giving me non-coherent cached memory, and now I don't have an > alternative. Looking at Linux 5.9-rc

Re: linux-next: build failure after merge of the drm tree

2020-09-30 Thread Paul Cercueil
Le mer. 30 sept. 2020 à 18:40, Christoph Hellwig a écrit : On Wed, Sep 30, 2020 at 06:39:18PM +0200, Paul Cercueil wrote: dma_alloc_pages gives you cached memory, so you can't just use an uncached protection for the userspace mmap here. If you want uncached memory you need to use dma_a

Re: linux-next: build failure after merge of the drm tree

2020-09-30 Thread Christoph Hellwig
On Wed, Sep 30, 2020 at 06:39:18PM +0200, Paul Cercueil wrote: >> dma_alloc_pages gives you cached memory, so you can't just use an >> uncached protection for the userspace mmap here. If you want uncached >> memory you need to use dma_alloc_coherent paired with dma_mmap_coherent. >> Or dma_alloc_w

Re: linux-next: build failure after merge of the drm tree

2020-09-30 Thread Paul Cercueil
Le mer. 30 sept. 2020 à 18:11, Christoph Hellwig a écrit : On Wed, Sep 30, 2020 at 03:33:13PM +0200, Paul Cercueil wrote: One thing missing for remap_pfn_range(), I have no alternative for this: vma->vm_page_prot = dma_pgprot(dev, vma->vm_page_prot, DMA_ATTR_NON_CONSISTENT); So I hav

Re: linux-next: build failure after merge of the drm tree

2020-09-30 Thread Christoph Hellwig
On Wed, Sep 30, 2020 at 03:33:13PM +0200, Paul Cercueil wrote: > One thing missing for remap_pfn_range(), I have no alternative for this: > > vma->vm_page_prot = dma_pgprot(dev, vma->vm_page_prot, > DMA_ATTR_NON_CONSISTENT); > > So I have to do: > > vma->vm_page_prot = pgprot_noncached(vma->vm_pag

Re: linux-next: build failure after merge of the drm tree

2020-09-30 Thread Paul Cercueil
Hi Christoph, Le mer. 30 sept. 2020 à 11:02, Christoph Hellwig a écrit : On Mon, Sep 28, 2020 at 03:31:28PM +0200, Paul Cercueil wrote: It's allocated with dma_alloc_wc, but then it's only accessed as non-coherent. Anyway, for the time being I guess you could revert 37054fc81443. But I

Re: linux-next: build failure after merge of the drm tree

2020-09-30 Thread Christoph Hellwig
On Mon, Sep 28, 2020 at 03:31:28PM +0200, Paul Cercueil wrote: > It's allocated with dma_alloc_wc, but then it's only accessed as > non-coherent. > > Anyway, for the time being I guess you could revert 37054fc81443. But I > have patches on top of it in drm-misc-next so it's going to be a mess. >

Re: linux-next: build failure after merge of the drm tree

2020-09-28 Thread Paul Cercueil
Le lun. 28 sept. 2020 à 14:10, Christoph Hellwig a écrit : On Mon, Sep 28, 2020 at 01:46:55PM +0200, Paul Cercueil wrote: dma_mmap_attrs can only be used on allocations from dma_mmap_attrs with the same attrs. As there is no allocation using DMA_ATTR_NON_CONSISTENT in the drm core, so

Re: linux-next: build failure after merge of the drm tree

2020-09-28 Thread Christoph Hellwig
On Mon, Sep 28, 2020 at 01:46:55PM +0200, Paul Cercueil wrote: >> dma_mmap_attrs can only be used on allocations from dma_mmap_attrs with >> the same attrs. As there is no allocation using DMA_ATTR_NON_CONSISTENT >> in the drm core, something looks very fishy here. > > Is that a fact? I don't see

Re: linux-next: build failure after merge of the drm tree

2020-09-28 Thread Paul Cercueil
Le lun. 28 sept. 2020 à 13:34, Christoph Hellwig a écrit : On Mon, Sep 28, 2020 at 12:15:56PM +0200, Paul Cercueil wrote: Hi Christoph, Le lun. 28 sept. 2020 à 8:04, Christoph Hellwig a écrit : On Mon, Sep 28, 2020 at 01:54:05PM +1000, Stephen Rothwell wrote: Hi all, After merg

Re: linux-next: build failure after merge of the drm tree

2020-09-28 Thread Christoph Hellwig
On Mon, Sep 28, 2020 at 12:15:56PM +0200, Paul Cercueil wrote: > Hi Christoph, > > Le lun. 28 sept. 2020 à 8:04, Christoph Hellwig a écrit : >> On Mon, Sep 28, 2020 at 01:54:05PM +1000, Stephen Rothwell wrote: >>> Hi all, >>> >>> After merging the drm tree, today's linux-next build (x86_64 >>>

Re: linux-next: build failure after merge of the drm tree

2020-09-28 Thread Paul Cercueil
Hi Christoph, Le lun. 28 sept. 2020 à 8:04, Christoph Hellwig a écrit : On Mon, Sep 28, 2020 at 01:54:05PM +1000, Stephen Rothwell wrote: Hi all, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: The driver needs to switch do dma_alloc_noncohe

Re: linux-next: build failure after merge of the drm tree

2020-09-27 Thread Christoph Hellwig
On Mon, Sep 28, 2020 at 04:08:36PM +1000, Dave Airlie wrote: > Is this possible in drm-next now (it's 5.9.0-rc5 based)? > > or will I need to get a stable shared git tree that goes into drm-next > and you send to Linus early in the MR? I think we'll need a stable branch. Let me help Paul with t

Re: linux-next: build failure after merge of the drm tree

2020-09-27 Thread Dave Airlie
On Mon, 28 Sep 2020 at 16:05, Christoph Hellwig wrote: > > On Mon, Sep 28, 2020 at 01:54:05PM +1000, Stephen Rothwell wrote: > > Hi all, > > > > After merging the drm tree, today's linux-next build (x86_64 allmodconfig) > > failed like this: > > The driver needs to switch do dma_alloc_noncoherent

Re: linux-next: build failure after merge of the drm tree

2020-09-27 Thread Christoph Hellwig
On Mon, Sep 28, 2020 at 01:54:05PM +1000, Stephen Rothwell wrote: > Hi all, > > After merging the drm tree, today's linux-next build (x86_64 allmodconfig) > failed like this: The driver needs to switch do dma_alloc_noncoherent + dma_sync_single* like the other drivers converted in the dma tree.

linux-next: build failure after merge of the drm tree

2020-09-27 Thread Stephen Rothwell
Hi all, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/ingenic/ingenic-drm-drv.c: In function 'ingenic_drm_sync_data': drivers/gpu/drm/ingenic/ingenic-drm-drv.c:478:4: error: implicit declaration of function 'dma_cache_sync'; did you

linux-next: build failure after merge of the drm tree

2020-05-07 Thread Stephen Rothwell
Hi all, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: In file included from include/asm-generic/bug.h:19, from arch/x86/include/asm/bug.h:83, from include/linux/bug.h:5, from include/linux/seq_file.h

Re: linux-next: build failure after merge of the drm tree

2018-05-16 Thread Dave Airlie
I've applied this locally for now so I can continue arm64 builds :-) Dave. On 16 May 2018 at 18:09, Oded Gabbay wrote: > 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:

Re: linux-next: build failure after merge of the drm tree

2018-05-16 Thread Oded Gabbay
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_

linux-next: build failure after merge of the drm tree

2018-05-15 Thread Stephen Rothwell
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';

linux-next: build failure after merge of the drm tree

2018-03-12 Thread Stephen Rothwell
Hi all, After merging the drm tree, today's linux-next build (powerpc allyesconfig) failed like this: drivers/gpu/drm/amd/amdgpu/../powerplay/hwmgr/smu7_hwmgr.c: In function 'smu7_notify_link_speed_change_after_state_change': drivers/gpu/drm/amd/amdgpu/../powerplay/hwmgr/smu7_hwmgr.c:3830:7: err

linux-next: build failure after merge of the drm tree

2018-01-01 Thread Stephen Rothwell
Hi all, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_mst_types.c:219:6: error: redefinition of 'dm_dp_mst_dc_sink_create' void dm_dp_mst_dc_sink_create(struct drm_connector *connector)

linux-next: build failure after merge of the drm tree

2017-09-27 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (powerpc allyesconfig) failed like this: drivers/gpu/drm/amd/powerplay/smumgr/ci_smc.o:(.opd+0xd8): multiple definition of `ci_send_msg_to_smc' drivers/gpu/drm/radeon/ci_smc.o:(.opd+0xc0): first defined here drivers/gpu/drm/amd/powerp

Re: linux-next: build failure after merge of the drm tree

2017-03-20 Thread Daniel Vetter
On Mon, Mar 20, 2017 at 9:03 AM, Daniel Vetter wrote: > On Mon, Mar 20, 2017 at 1:51 AM, Stephen Rothwell > wrote: >> This cherry picking of fixes from new development back to Linus' tree >> can be a real pain when so many other changes happen in the same files. > > One possible fix for this wou

Re: linux-next: build failure after merge of the drm tree

2017-03-20 Thread Daniel Vetter
On Mon, Mar 20, 2017 at 1:51 AM, Stephen Rothwell wrote: > This cherry picking of fixes from new development back to Linus' tree > can be a real pain when so many other changes happen in the same files. One possible fix for this would be if you reuse our rerere cache. The only reason we don't go

linux-next: build failure after merge of the drm tree

2017-03-19 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/i915/i915_irq.c: In function 'gen6_rps_reset_ei': drivers/gpu/drm/i915/i915_irq.c:1115:38: error: 'struct intel_gen6_power_mgmt' has no member named 'down_ei' vlv_c0_read(dev_p

linux-next: build failure after merge of the drm tree

2017-02-23 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/tinydrm/core/tinydrm-helpers.c:198:26: error: redefinition of 'tinydrm_of_find_backlight' struct backlight_device *tinydrm_of_find_backlight(struct device *dev)

RE: linux-next: build failure after merge of the drm tree

2017-01-25 Thread Vincent ABRIOU
Dave Airlie > Cc: linux-n...@vger.kernel.org; linux-kernel@vger.kernel.org; Vincent > ABRIOU ; Ville Syrjälä > > Subject: linux-next: build failure after merge of the drm tree > > Hi Dave, > > After merging the drm tree, today's linux-next build (arm > multi_v7_defco

linux-next: build failure after merge of the drm tree

2017-01-23 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (arm multi_v7_defconfig) failed like this: drivers/gpu/drm/sti/sti_plane.c: In function 'sti_plane_update_fps': drivers/gpu/drm/sti/sti_plane.c:76:33: error: 'struct drm_framebuffer' has no member named 'pixel_format' (char *)&pl

Re: linux-next: build failure after merge of the drm tree

2016-07-14 Thread Sedat Dilek
On 7/15/16, Stephen Rothwell wrote: > Hi Dave, > > After merging the drm tree, today's linux-next build (x86_64 allmodconfig) > failed like this: > > In file included from drivers/gpu/drm/i915/intel_opregion.c:34:0: > drivers/gpu/drm/i915/intel_opregion.c: In function > 'intel_opregion_get_panel_t

linux-next: build failure after merge of the drm tree

2016-07-14 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: In file included from drivers/gpu/drm/i915/intel_opregion.c:34:0: drivers/gpu/drm/i915/intel_opregion.c: In function 'intel_opregion_get_panel_type': drivers/gpu/drm/i915/intel_opregion.c:1042:1

Re: linux-next: build failure after merge of the drm tree

2016-04-28 Thread Jani Nikula
On Thu, 28 Apr 2016, Stephen Rothwell wrote: > Hi Dave, > > After merging the drm tree, today's linux-next build (x86_64 allmodconfig) > failed like this: > > drivers/gpu/drm/i915/intel_ddi.c: In function 'intel_prepare_ddi_buffer': > drivers/gpu/drm/i915/intel_ddi.c:447:15: error: 'struct drm_i91

linux-next: build failure after merge of the drm tree

2016-04-27 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/i915/intel_ddi.c: In function 'intel_prepare_ddi_buffer': drivers/gpu/drm/i915/intel_ddi.c:447:15: error: 'struct drm_i915_private' has no member named 'edp_low_vswing' if (de

Re: linux-next: build failure after merge of the drm tree

2016-03-19 Thread Christian König
Hi Stephen, yeah, indeed the release_pages() function is now used in two more files. Your fix is Reviewed-by: Christian König . Regards, Christian. Am 17.03.2016 um 05:41 schrieb Stephen Rothwell: Hi Dave, After merging the drm tree, today's linux-next build (powerpc allyesconfig) failed lik

linux-next: build failure after merge of the drm tree

2016-03-18 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (powerpc allyesconfig) failed like this: drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c: In function 'amdgpu_gem_userptr_ioctl': drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c:321:2: error: implicit declaration of function 'release_pages' [-Werror=

linux-next: build failure after merge of the drm tree

2016-02-21 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c:818:6: error: redefinition of 'amdgpu_ttm_tt_affect_userptr' bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start, ^ drivers/g

Re: linux-next: build failure after merge of the drm tree

2016-01-06 Thread Stephen Rothwell
Hi all, On Thu, 31 Dec 2015 21:31:24 +1100 Stephen Rothwell wrote: > > After merging the drm tree, today's linux-next build (powerpc > allyesconfig) failed like this: > > drivers/gpu/drm/amd/amdgpu/../powerplay/hwmgr/tonga_thermal.c: In function > 'tonga_fan_ctrl_get_fan_speed_percent': > driv

linux-next: build failure after merge of the drm tree

2015-12-31 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (powerpc allyesconfig) failed like this: drivers/gpu/drm/amd/amdgpu/../powerplay/hwmgr/tonga_thermal.c: In function 'tonga_fan_ctrl_get_fan_speed_percent': drivers/gpu/drm/amd/amdgpu/../powerplay/hwmgr/tonga_thermal.c:84:2: error: im

Re: linux-next: build failure after merge of the drm tree

2015-12-30 Thread Mark yao
On 2015年12月31日 10:40, Stephen Rothwell wrote: Hi Dave, After merging the drm tree, today's linux-next build (arm multi_v7_defconfig) failed like this: ERROR: "vop_component_ops" [drivers/gpu/drm/rockchip/rockchip_vop_reg.ko] undefined! Caused by commit a67719d18229 ("drm/rockchip: vop: sp

linux-next: build failure after merge of the drm tree

2015-12-30 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (arm multi_v7_defconfig) failed like this: ERROR: "vop_component_ops" [drivers/gpu/drm/rockchip/rockchip_vop_reg.ko] undefined! Caused by commit a67719d18229 ("drm/rockchip: vop: spilt register related into rockchip_reg_vop.c")

Re: linux-next: build failure after merge of the drm tree

2015-11-09 Thread Alexandre Courbot
On Tue, Nov 10, 2015 at 1:45 AM, Guenter Roeck wrote: > On Wed, Nov 04, 2015 at 08:22:26PM +1100, Stephen Rothwell wrote: >> Hi Dave, >> >> After merging the drm tree, today's linux-next build (s390 allmodconfig) >> failed like this: >> >> drivers/gpu/drm/nouveau/nvkm/subdev/instmem/gk20a.c:143:2:

Re: linux-next: build failure after merge of the drm tree

2015-11-09 Thread Guenter Roeck
On Wed, Nov 04, 2015 at 08:22:26PM +1100, Stephen Rothwell wrote: > Hi Dave, > > After merging the drm tree, today's linux-next build (s390 allmodconfig) > failed like this: > > drivers/gpu/drm/nouveau/nvkm/subdev/instmem/gk20a.c:143:2: error: implicit > declaration of function 'dma_to_phys' [-W

linux-next: build failure after merge of the drm tree

2015-11-04 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (s390 allmodconfig) failed like this: drivers/gpu/drm/nouveau/nvkm/subdev/instmem/gk20a.c:143:2: error: implicit declaration of function 'dma_to_phys' [-Werror=implicit-function-declaration] Caused by commit 69c4938249fb ("drm/nou

linux-next: build failure after merge of the drm tree

2015-10-05 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (arm multi_v7_defconfig) failed like this: drivers/gpu/drm/drm_fb_helper.c: In function 'restore_fbdev_mode': drivers/gpu/drm/drm_fb_helper.c:448:5: error: 'error' undeclared (first use in this function) error = true; ^ Cau

Re: linux-next: build failure after merge of the drm tree

2015-06-09 Thread Stephen Rothwell
er.kernel.org; linux-kernel@vger.kernel.org; Deucher, > > Alexander > > Subject: linux-next: build failure after merge of the drm tree > > > > Hi Dave, > > > > After merging the drm tree, today's linux-next build (powerpc > > allyesconfig) failed like thi

RE: linux-next: build failure after merge of the drm tree

2015-06-09 Thread Deucher, Alexander
> -Original Message- > From: Stephen Rothwell [mailto:s...@canb.auug.org.au] > Sent: Tuesday, June 09, 2015 9:43 AM > To: Dave Airlie > Cc: linux-n...@vger.kernel.org; linux-kernel@vger.kernel.org; Deucher, > Alexander > Subject: linux-next: build failure after

linux-next: build failure after merge of the drm tree

2015-06-09 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (powerpc allyesconfig) failed like this: drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c: In function 'gfx_v7_0_cp_gfx_resume': drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c:2879:9: error: 'BUF_SWAP_32BIT' undeclared (first use in this function) tmp

Re: linux-next: build failure after merge of the drm tree

2015-05-19 Thread Dave Airlie
> >> > drm-next and fix it up there. > >> > >> Yep, against commit 79b066bd76d5 ("drm/amdkfd: Initialize sdma vm when > >> creating sdma queue") which is in v4.1-rc3. > > > > So you could, of course, just merge that commit instead of Linus' > > tree ... > > > > -- > > Cheers, > > Stephen Rothwell

Re: linux-next: build failure after merge of the drm tree

2015-05-19 Thread Oded Gabbay
On Wed, May 20, 2015 at 8:31 AM, Stephen Rothwell wrote: > Hi Dave, > > On Wed, 20 May 2015 15:25:38 +1000 Stephen Rothwell > wrote: >> >> On Wed, 20 May 2015 05:41:46 +0100 (IST) Dave Airlie >> wrote: >> > >> > > After merging the drm tree, today's linux-next build (powerpc >> > > ppc64_defco

Re: linux-next: build failure after merge of the drm tree

2015-05-19 Thread Stephen Rothwell
Hi Dave, On Wed, 20 May 2015 15:25:38 +1000 Stephen Rothwell wrote: > > On Wed, 20 May 2015 05:41:46 +0100 (IST) Dave Airlie wrote: > > > > > After merging the drm tree, today's linux-next build (powerpc > > > ppc64_defconfig) failed like this: > > > > > > drivers/gpu/drm/amd/amdkfd/kfd_device

Re: linux-next: build failure after merge of the drm tree

2015-05-19 Thread Stephen Rothwell
Hi Dave, On Wed, 20 May 2015 05:41:46 +0100 (IST) Dave Airlie wrote: > > > After merging the drm tree, today's linux-next build (powerpc > > ppc64_defconfig) failed like this: > > > > drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c: In function > > 'create_queue_cpsch': > > drivers/gpu/dr

Re: linux-next: build failure after merge of the drm tree

2015-05-19 Thread Dave Airlie
> Hi Dave, > > After merging the drm tree, today's linux-next build (powerpc > ppc64_defconfig) failed like this: > > drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c: In function > 'create_queue_cpsch': > drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c:888:2: error: implicit > decl

linux-next: build failure after merge of the drm tree

2015-05-19 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (powerpc ppc64_defconfig) failed like this: drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c: In function 'create_queue_cpsch': drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c:888:2: error: implicit declaration of function

Re: linux-next: build failure after merge of the drm tree

2015-01-29 Thread Stephen Rothwell
Hi Oded, On Thu, 29 Jan 2015 10:21:04 +0200 Oded Gabbay wrote: > > So I think that Dave's drm-next now contains the correct code. > Will you merge it again, or do you do it daily anyway ? I fear I'm entirely > clear with the details of the linux-next process. I fetch all the trees again each mo

Re: linux-next: build failure after merge of the drm tree

2015-01-29 Thread Oded Gabbay
On 01/29/2015 04:38 AM, Stephen Rothwell wrote: After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/amd/amdkfd/kfd_device.c: In function 'kgd2kfd_device_init': drivers/gpu/drm/amd/amdkfd/kfd_device.c:193:11: error: 'max_num_of_processes'

linux-next: build failure after merge of the drm tree

2015-01-28 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/amd/amdkfd/kfd_device.c: In function 'kgd2kfd_device_init': drivers/gpu/drm/amd/amdkfd/kfd_device.c:193:11: error: 'max_num_of_processes' undeclared (first use in this function)

linux-next: build failure after merge of the drm tree

2014-09-07 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/i915/intel_display.c: In function 'intel_crtc_cursor_set_obj': drivers/gpu/drm/i915/intel_display.c:8302:24: error: 'dev_priv' undeclared (first use in this function) intel_ru

Re: linux-next: build failure after merge of the drm tree

2014-06-04 Thread Stephen Rothwell
Hi Daniel, On Thu, 5 Jun 2014 14:12:27 +1000 Stephen Rothwell wrote: > > After merging the drm tree, today's linux-next build (x86_64 > allmodconfig) failed like this: > > drivers/gpu/drm/i915/intel_fbdev.c: In function 'intel_fb_initial_config': > drivers/gpu/drm/i915/intel_fbdev.c:392:4: erro

linux-next: build failure after merge of the drm tree

2014-06-04 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/i915/intel_fbdev.c: In function 'intel_fb_initial_config': drivers/gpu/drm/i915/intel_fbdev.c:392:4: error: implicit declaration of function 'drm_get_connector_name' [-Werror=imp

Re: linux-next: build failure after merge of the drm tree

2012-09-24 Thread Stephen Rothwell
Hi Daniel, On Mon, 24 Sep 2012 13:31:54 +0200 Daniel Vetter wrote: > > Looks good. I've known about this issue and tried to improve matters by > applying the patch to both trees (to at least force a conflict), but not > even with that patch applied in my drm-intel-next queue I get a proper > conf

Re: linux-next: build failure after merge of the drm tree

2012-09-24 Thread Daniel Vetter
On Mon, Sep 24, 2012 at 01:18:34PM +1000, Stephen Rothwell wrote: > Hi Dave, > > After merging the drm tree, today's linux-next build (x86_64 allmodconfig) > failed like this: > > drivers/gpu/drm/i915/intel_hdmi.c: In function 'intel_enable_hdmi': > drivers/gpu/drm/i915/intel_hdmi.c:633:31: error

linux-next: build failure after merge of the drm tree

2012-09-23 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/i915/intel_hdmi.c: In function 'intel_enable_hdmi': drivers/gpu/drm/i915/intel_hdmi.c:633:31: error: 'mode' undeclared (first use in this function) Caused by commit b98b60167279

linux-next: build failure after merge of the drm tree

2012-08-23 Thread Stephen Rothwell
Hi Dave, After merging the drm tree, today's linux-next build (x86_64 allmodconfig) failed like this: drivers/gpu/drm/gma500/cdv_intel_display.c: In function 'cdv_intel_crtc_mode_set': drivers/gpu/drm/gma500/cdv_intel_display.c:1129:3: error: implicit declaration of function 'cdv_intel_dp_set_m