Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-07 Thread Stephen Rothwell
Hi Rusty, On Mon, 06 May 2013 14:59:05 +0930 Rusty Russell wrote: > > Stephen Rothwell writes: > > Version from today's merge fix. Rusty, you should show this to Linus > > when you ask him to merge your modules tree (assuming it looks right :-)). > > > > From: Stephen Rothwell > > Date: Thu,

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-07 Thread Stephen Rothwell
Hi Rusty, On Mon, 06 May 2013 14:59:05 +0930 Rusty Russell ru...@rustcorp.com.au wrote: Stephen Rothwell s...@canb.auug.org.au writes: Version from today's merge fix. Rusty, you should show this to Linus when you ask him to merge your modules tree (assuming it looks right :-)). From:

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-06 Thread Rusty Russell
Stephen Rothwell writes: > Version from today's merge fix. Rusty, you should show this to Linus > when you ask him to merge your modules tree (assuming it looks right :-)). > > From: Stephen Rothwell > Date: Thu, 14 Mar 2013 17:14:41 +1100 > Subject: [PATCH] cond_syscall and SYSCALL_ALIAS merge

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-06 Thread Rusty Russell
Stephen Rothwell s...@canb.auug.org.au writes: Version from today's merge fix. Rusty, you should show this to Linus when you ask him to merge your modules tree (assuming it looks right :-)). From: Stephen Rothwell s...@canb.auug.org.au Date: Thu, 14 Mar 2013 17:14:41 +1100 Subject: [PATCH]

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread Stephen Rothwell
Hi Rusty, On Thu, 2 May 2013 13:37:37 +1000 Stephen Rothwell wrote: > > This is the merge fix patch I have been carrying in linux-next since > March 14: (this probably does not quite apply any more but, hey ...) > > From: Stephen Rothwell > Date: Thu, 14 Mar 2013 17:14:41 +1100 > Subject:

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread Al Viro
On Wed, May 01, 2013 at 10:43:35PM +0100, Al Viro wrote: > Oh, hell... Guys, my deep apologies - what happened is that this thing > has been caught in -next, rebase done here (on top of Rusty's commit) > and *not* pushed to linux-next. Curiouser and curiouser... FWIW, what I have is $ cat

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread Stephen Rothwell
Hi all, On Thu, 02 May 2013 09:58:08 +0930 Rusty Russell wrote: > > James Hogan writes: > > Al's commit e1b5bb6d1236d4ad2084c53aa83dde7cdf6f8eea ("consolidate > > cond_syscall and SYSCALL_ALIAS declarations") broke the build on > > blackfin and metag due to the following code: > > > > #ifndef

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread Rusty Russell
James Hogan writes: > Al's commit e1b5bb6d1236d4ad2084c53aa83dde7cdf6f8eea ("consolidate > cond_syscall and SYSCALL_ALIAS declarations") broke the build on > blackfin and metag due to the following code: > > #ifndef SYMBOL_NAME > #ifdef CONFIG_SYMBOL_PREFIX > #define SYMBOL_NAME(x)

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread James Hogan
On 1 May 2013 22:43, Al Viro wrote: > On Wed, May 01, 2013 at 10:04:17PM +0100, James Hogan wrote: >> Al's commit e1b5bb6d1236d4ad2084c53aa83dde7cdf6f8eea ("consolidate >> cond_syscall and SYSCALL_ALIAS declarations") broke the build on >> blackfin and metag due to the following code: >> >>

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread Al Viro
On Wed, May 01, 2013 at 10:04:17PM +0100, James Hogan wrote: > Al's commit e1b5bb6d1236d4ad2084c53aa83dde7cdf6f8eea ("consolidate > cond_syscall and SYSCALL_ALIAS declarations") broke the build on > blackfin and metag due to the following code: > > #ifndef SYMBOL_NAME > #ifdef

[PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread James Hogan
Al's commit e1b5bb6d1236d4ad2084c53aa83dde7cdf6f8eea ("consolidate cond_syscall and SYSCALL_ALIAS declarations") broke the build on blackfin and metag due to the following code: #ifndef SYMBOL_NAME #ifdef CONFIG_SYMBOL_PREFIX #define SYMBOL_NAME(x) CONFIG_SYMBOL_PREFIX ## x #else

[PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread James Hogan
Al's commit e1b5bb6d1236d4ad2084c53aa83dde7cdf6f8eea (consolidate cond_syscall and SYSCALL_ALIAS declarations) broke the build on blackfin and metag due to the following code: #ifndef SYMBOL_NAME #ifdef CONFIG_SYMBOL_PREFIX #define SYMBOL_NAME(x) CONFIG_SYMBOL_PREFIX ## x #else #define

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread Al Viro
On Wed, May 01, 2013 at 10:04:17PM +0100, James Hogan wrote: Al's commit e1b5bb6d1236d4ad2084c53aa83dde7cdf6f8eea (consolidate cond_syscall and SYSCALL_ALIAS declarations) broke the build on blackfin and metag due to the following code: #ifndef SYMBOL_NAME #ifdef CONFIG_SYMBOL_PREFIX

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread James Hogan
On 1 May 2013 22:43, Al Viro v...@zeniv.linux.org.uk wrote: On Wed, May 01, 2013 at 10:04:17PM +0100, James Hogan wrote: Al's commit e1b5bb6d1236d4ad2084c53aa83dde7cdf6f8eea (consolidate cond_syscall and SYSCALL_ALIAS declarations) broke the build on blackfin and metag due to the following

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread Rusty Russell
James Hogan james.ho...@imgtec.com writes: Al's commit e1b5bb6d1236d4ad2084c53aa83dde7cdf6f8eea (consolidate cond_syscall and SYSCALL_ALIAS declarations) broke the build on blackfin and metag due to the following code: #ifndef SYMBOL_NAME #ifdef CONFIG_SYMBOL_PREFIX #define

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread Stephen Rothwell
Hi all, On Thu, 02 May 2013 09:58:08 +0930 Rusty Russell ru...@rustcorp.com.au wrote: James Hogan james.ho...@imgtec.com writes: Al's commit e1b5bb6d1236d4ad2084c53aa83dde7cdf6f8eea (consolidate cond_syscall and SYSCALL_ALIAS declarations) broke the build on blackfin and metag due to the

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread Al Viro
On Wed, May 01, 2013 at 10:43:35PM +0100, Al Viro wrote: Oh, hell... Guys, my deep apologies - what happened is that this thing has been caught in -next, rebase done here (on top of Rusty's commit) and *not* pushed to linux-next. Curiouser and curiouser... FWIW, what I have is $ cat

Re: [PATCH] linkage.h: fix build breakage due to symbol prefix handling

2013-05-01 Thread Stephen Rothwell
Hi Rusty, On Thu, 2 May 2013 13:37:37 +1000 Stephen Rothwell s...@canb.auug.org.au wrote: This is the merge fix patch I have been carrying in linux-next since March 14: (this probably does not quite apply any more but, hey ...) From: Stephen Rothwell s...@canb.auug.org.au Date: Thu, 14