Re: [patch] net/DCCP: fix link error with !CONFIG_SYSCTL

2007-10-16 Thread Arnaldo Carvalho de Melo
Em Mon, Oct 15, 2007 at 06:11:13PM +0200, Ingo Molnar escreveu: > Subject: net/DCCP: fix link error with !CONFIG_SYSCTL > From: Ingo Molnar <[EMAIL PROTECTED]> > > do not define the sysctl_dccp_sync_ratelimit sysctl variable in > the CONFIG_SYSCTL dependent sysctl.c module - move it to input.c

Re: [patch] net/DCCP: fix link error with !CONFIG_SYSCTL

2007-10-16 Thread Arnaldo Carvalho de Melo
Em Mon, Oct 15, 2007 at 06:11:13PM +0200, Ingo Molnar escreveu: Subject: net/DCCP: fix link error with !CONFIG_SYSCTL From: Ingo Molnar [EMAIL PROTECTED] do not define the sysctl_dccp_sync_ratelimit sysctl variable in the CONFIG_SYSCTL dependent sysctl.c module - move it to input.c instead.

Re: [patch] net/DCCP: fix link error with !CONFIG_SYSCTL

2007-10-15 Thread Ian McDonald
On 10/16/07, Ingo Molnar <[EMAIL PROTECTED]> wrote: > Subject: net/DCCP: fix link error with !CONFIG_SYSCTL > From: Ingo Molnar <[EMAIL PROTECTED]> > > do not define the sysctl_dccp_sync_ratelimit sysctl variable in > the CONFIG_SYSCTL dependent sysctl.c module - move it to input.c instead. > >

[patch] net/DCCP: fix link error with !CONFIG_SYSCTL

2007-10-15 Thread Ingo Molnar
Subject: net/DCCP: fix link error with !CONFIG_SYSCTL From: Ingo Molnar <[EMAIL PROTECTED]> do not define the sysctl_dccp_sync_ratelimit sysctl variable in the CONFIG_SYSCTL dependent sysctl.c module - move it to input.c instead. this fixes the following build bug: net/built-in.o: In function

[patch] net/DCCP: fix link error with !CONFIG_SYSCTL

2007-10-15 Thread Ingo Molnar
Subject: net/DCCP: fix link error with !CONFIG_SYSCTL From: Ingo Molnar [EMAIL PROTECTED] do not define the sysctl_dccp_sync_ratelimit sysctl variable in the CONFIG_SYSCTL dependent sysctl.c module - move it to input.c instead. this fixes the following build bug: net/built-in.o: In function

Re: [patch] net/DCCP: fix link error with !CONFIG_SYSCTL

2007-10-15 Thread Ian McDonald
On 10/16/07, Ingo Molnar [EMAIL PROTECTED] wrote: Subject: net/DCCP: fix link error with !CONFIG_SYSCTL From: Ingo Molnar [EMAIL PROTECTED] do not define the sysctl_dccp_sync_ratelimit sysctl variable in the CONFIG_SYSCTL dependent sysctl.c module - move it to input.c instead. this fixes