kernel-janitors.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [slave-dma:topic/dmaengine_dt 17/20] drivers/dma/dmaengine.c:65:26: fatal error: linux/of_dma.h: No
@ 2012-09-25 11:37 Fengguang Wu
  2012-09-25 16:37 ` [slave-dma:topic/dmaengine_dt 17/20] drivers/dma/dmaengine.c:65:26: fatal error: linux/of_dma.h: Vinod Koul
  2012-09-26  0:45 ` Fengguang Wu
  0 siblings, 2 replies; 3+ messages in thread
From: Fengguang Wu @ 2012-09-25 11:37 UTC (permalink / raw)
  To: kernel-janitors

Hi Vinod,

I noticed that kernel build failed on this commit and get fixed by
the next next commit. Do you want me to do commit-by-commit tests on
your tree, or test branch head first which will ignore such interim errors?

Thanks,
Fengguang
---

tree:   git://git.infradead.org/users/vkoul/slave-dma.git topic/dmaengine_dt
head:   be2e7726dc84371736996e05d10331f70afd50c1
commit: 528499a7037ebec0636d928f88cd783c618df3c5 [17/20] dmaengine: add helper function to request a slave DMA channel
config: x86_64-allmodconfig


All error/warnings:

drivers/dma/dmaengine.c:65:26: fatal error: linux/of_dma.h: No such file or directory
compilation terminated.

vim +65 drivers/dma/dmaengine.c
    59	#include <linux/rcupdate.h>
    60	#include <linux/mutex.h>
    61	#include <linux/jiffies.h>
    62	#include <linux/rculist.h>
    63	#include <linux/idr.h>
    64	#include <linux/slab.h>
  > 65	#include <linux/of_dma.h>
    66	
    67	static DEFINE_MUTEX(dma_list_mutex);
    68	static DEFINE_IDR(dma_idr);

---
0-DAY kernel build testing backend         Open Source Technology Centre
Fengguang Wu, Yuanhan Liu                              Intel Corporation

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

* Re: [slave-dma:topic/dmaengine_dt 17/20] drivers/dma/dmaengine.c:65:26: fatal error: linux/of_dma.h:
  2012-09-25 11:37 [slave-dma:topic/dmaengine_dt 17/20] drivers/dma/dmaengine.c:65:26: fatal error: linux/of_dma.h: No Fengguang Wu
@ 2012-09-25 16:37 ` Vinod Koul
  2012-09-26  0:45 ` Fengguang Wu
  1 sibling, 0 replies; 3+ messages in thread
From: Vinod Koul @ 2012-09-25 16:37 UTC (permalink / raw)
  To: kernel-janitors

On Tue, 2012-09-25 at 19:37 +0800, Fengguang Wu wrote:
> Hi Vinod,
> 
> I noticed that kernel build failed on this commit and get fixed by
> the next next commit. Do you want me to do commit-by-commit tests on
> your tree, or test branch head first which will ignore such interim errors?
test branch head should be fine. 

But yes for kernel each patch needs to build on its own, this should not
have happened in the first place.


> Thanks,
> Fengguang
> ---
> 
> tree:   git://git.infradead.org/users/vkoul/slave-dma.git topic/dmaengine_dt
> head:   be2e7726dc84371736996e05d10331f70afd50c1
> commit: 528499a7037ebec0636d928f88cd783c618df3c5 [17/20] dmaengine: add helper function to request a slave DMA channel
> config: x86_64-allmodconfig
> 
> 
> All error/warnings:
> 
> drivers/dma/dmaengine.c:65:26: fatal error: linux/of_dma.h: No such file or directory
> compilation terminated.
> 
> vim +65 drivers/dma/dmaengine.c
>     59	#include <linux/rcupdate.h>
>     60	#include <linux/mutex.h>
>     61	#include <linux/jiffies.h>
>     62	#include <linux/rculist.h>
>     63	#include <linux/idr.h>
>     64	#include <linux/slab.h>
>   > 65	#include <linux/of_dma.h>
>     66	
>     67	static DEFINE_MUTEX(dma_list_mutex);
>     68	static DEFINE_IDR(dma_idr);
> 
> ---
> 0-DAY kernel build testing backend         Open Source Technology Centre
> Fengguang Wu, Yuanhan Liu                              Intel Corporation


-- 
~Vinod


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

* Re: [slave-dma:topic/dmaengine_dt 17/20] drivers/dma/dmaengine.c:65:26: fatal error: linux/of_dma.h:
  2012-09-25 11:37 [slave-dma:topic/dmaengine_dt 17/20] drivers/dma/dmaengine.c:65:26: fatal error: linux/of_dma.h: No Fengguang Wu
  2012-09-25 16:37 ` [slave-dma:topic/dmaengine_dt 17/20] drivers/dma/dmaengine.c:65:26: fatal error: linux/of_dma.h: Vinod Koul
@ 2012-09-26  0:45 ` Fengguang Wu
  1 sibling, 0 replies; 3+ messages in thread
From: Fengguang Wu @ 2012-09-26  0:45 UTC (permalink / raw)
  To: kernel-janitors

On Tue, Sep 25, 2012 at 09:55:13PM +0530, Vinod Koul wrote:
> On Tue, 2012-09-25 at 19:37 +0800, Fengguang Wu wrote:
> > Hi Vinod,
> > 
> > I noticed that kernel build failed on this commit and get fixed by
> > the next next commit. Do you want me to do commit-by-commit tests on
> > your tree, or test branch head first which will ignore such interim errors?
> test branch head should be fine. 

OK!

> But yes for kernel each patch needs to build on its own, this should not
> have happened in the first place.

Yeah, for that purpose ktest or aiaiai are good tools that's designed
to run such checks before pushing new commits. :-)

Thanks,
Fengguang

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

end of thread, other threads:[~2012-09-26  0:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-25 11:37 [slave-dma:topic/dmaengine_dt 17/20] drivers/dma/dmaengine.c:65:26: fatal error: linux/of_dma.h: No Fengguang Wu
2012-09-25 16:37 ` [slave-dma:topic/dmaengine_dt 17/20] drivers/dma/dmaengine.c:65:26: fatal error: linux/of_dma.h: Vinod Koul
2012-09-26  0:45 ` Fengguang Wu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).