public inbox for linux-next@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] tile: fix build failure
       [not found] ` <0a7c53b5-0d1f-baa1-b159-b188e68e8f26@mellanox.com>
@ 2017-02-13 22:58   ` Sudip Mukherjee
  2017-02-13 23:01     ` Stephen Rothwell
  0 siblings, 1 reply; 3+ messages in thread
From: Sudip Mukherjee @ 2017-02-13 22:58 UTC (permalink / raw)
  To: Chris Metcalf; +Cc: linux-kernel, Peter Zijlstra, linux-next, Stephen Rothwell

On Tuesday 24 January 2017 04:56 PM, Chris Metcalf wrote:
> On 1/24/2017 11:39 AM, Sudip Mukherjee wrote:
>> From: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
>>
>> The build of tilegx allmodconfig was failing with errors like:
>> ../arch/tile/include/asm/div64.h:5:15: error: unknown type name 'u64'
>>   static inline u64 mul_u32_u32(u32 a, u32 b)
>>                 ^~~
>> ../arch/tile/include/asm/div64.h:5:31: error: unknown type name 'u32'
>>   static inline u64 mul_u32_u32(u32 a, u32 b)
>>                                 ^~~
>> ../arch/tile/include/asm/div64.h:5:38: error: unknown type name 'u32'
>>   static inline u64 mul_u32_u32(u32 a, u32 b)
>>                                        ^~~
>> In file included from ../fs/ubifs/ubifs.h:26:0,
>>                   from ../fs/ubifs/shrinker.c:42:
>> ../include/linux/math64.h: In function 'mul_u64_u32_shr':
>> ../arch/tile/include/asm/div64.h:9:21: error: implicit declaration of
>>     function 'mul_u32_u32' [-Werror=implicit-function-declaration]
>>
>> The simplest solution was to include the types header file.
>>
>> Fixes: 9e3d6223d209 ("math64, timers: Fix 32bit mul_u64_u32_shr() and
>> friends")
>> Cc: Peter Zijlstra <peterz@infradead.org>
>> Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
>> ---
>>
>> build log is at:
>> https://travis-ci.org/sudipm-mukherjee/parport/jobs/194717687
>>
>>   arch/tile/include/asm/div64.h | 1 +
>>   1 file changed, 1 insertion(+)
>
> Acked-by: Chris Metcalf <cmetcalf@mellanox.com>
>

linux-next is still failing for this error. Who will pick this up?

Regards
Sudip

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

* Re: [PATCH] tile: fix build failure
  2017-02-13 22:58   ` [PATCH] tile: fix build failure Sudip Mukherjee
@ 2017-02-13 23:01     ` Stephen Rothwell
  2017-02-14  8:48       ` Thomas Gleixner
  0 siblings, 1 reply; 3+ messages in thread
From: Stephen Rothwell @ 2017-02-13 23:01 UTC (permalink / raw)
  To: Sudip Mukherjee
  Cc: Chris Metcalf, linux-kernel, Peter Zijlstra, linux-next,
	Thomas Gleixner

Hi Sudip,

On Mon, 13 Feb 2017 22:58:40 +0000 Sudip Mukherjee <sudipm.mukherjee@gmail.com> wrote:
>
> On Tuesday 24 January 2017 04:56 PM, Chris Metcalf wrote:
> > On 1/24/2017 11:39 AM, Sudip Mukherjee wrote:  
> >> From: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
> >>
> >> The build of tilegx allmodconfig was failing with errors like:
> >> ../arch/tile/include/asm/div64.h:5:15: error: unknown type name 'u64'
> >>   static inline u64 mul_u32_u32(u32 a, u32 b)
> >>                 ^~~
> >> ../arch/tile/include/asm/div64.h:5:31: error: unknown type name 'u32'
> >>   static inline u64 mul_u32_u32(u32 a, u32 b)
> >>                                 ^~~
> >> ../arch/tile/include/asm/div64.h:5:38: error: unknown type name 'u32'
> >>   static inline u64 mul_u32_u32(u32 a, u32 b)
> >>                                        ^~~
> >> In file included from ../fs/ubifs/ubifs.h:26:0,
> >>                   from ../fs/ubifs/shrinker.c:42:
> >> ../include/linux/math64.h: In function 'mul_u64_u32_shr':
> >> ../arch/tile/include/asm/div64.h:9:21: error: implicit declaration of
> >>     function 'mul_u32_u32' [-Werror=implicit-function-declaration]
> >>
> >> The simplest solution was to include the types header file.
> >>
> >> Fixes: 9e3d6223d209 ("math64, timers: Fix 32bit mul_u64_u32_shr() and
> >> friends")
> >> Cc: Peter Zijlstra <peterz@infradead.org>
> >> Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
> >> ---
> >>
> >> build log is at:
> >> https://travis-ci.org/sudipm-mukherjee/parport/jobs/194717687
> >>
> >>   arch/tile/include/asm/div64.h | 1 +
> >>   1 file changed, 1 insertion(+)  
> >
> > Acked-by: Chris Metcalf <cmetcalf@mellanox.com>
> >  
> 
> linux-next is still failing for this error. Who will pick this up?

Presumably the tip tree (timers/core).  Added Thomas to cc.

-- 
Cheers,
Stephen Rothwell

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

* Re: [PATCH] tile: fix build failure
  2017-02-13 23:01     ` Stephen Rothwell
@ 2017-02-14  8:48       ` Thomas Gleixner
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Gleixner @ 2017-02-14  8:48 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Sudip Mukherjee, Chris Metcalf, linux-kernel, Peter Zijlstra,
	linux-next

On Tue, 14 Feb 2017, Stephen Rothwell wrote:
> > linux-next is still failing for this error. Who will pick this up?
> 
> Presumably the tip tree (timers/core).  Added Thomas to cc.

Applied.

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

end of thread, other threads:[~2017-02-14  8:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1485275961-20112-1-git-send-email-sudip.mukherjee@codethink.co.uk>
     [not found] ` <0a7c53b5-0d1f-baa1-b159-b188e68e8f26@mellanox.com>
2017-02-13 22:58   ` [PATCH] tile: fix build failure Sudip Mukherjee
2017-02-13 23:01     ` Stephen Rothwell
2017-02-14  8:48       ` Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox