Re: [net-2.6.22] [IPV4]: Fix build without procfs.

2007-04-24 Thread Herbert Xu
On Wed, Apr 25, 2007 at 11:46:50AM +0900, YOSHIFUJI Hideaki / ?$B5HF#1QL@ wrote: > > Herbert, as I said before, we could defer that. > It was preparation for future development (per-interface statistics > and netlink interface. OK, but you better make sure that Adrian Bunk doesn't see them :) Ch

Re: [net-2.6.22] [IPV4]: Fix build without procfs.

2007-04-24 Thread Herbert Xu
On Wed, Apr 25, 2007 at 12:35:49PM +1000, Herbert Xu wrote: > > [IPV4]: Move snmp_mib_init out of proc.c > > The function snmp_mib_init has nothing to do with proc so this patch > moves it out of proc.c and to the only place that uses it. Right now > there is only one user so I'ved made it stati

Re: [net-2.6.22] [IPV4]: Fix build without procfs.

2007-04-24 Thread YOSHIFUJI Hideaki / 吉藤英明
Hello. In article <[EMAIL PROTECTED]> (at Wed, 25 Apr 2007 12:35:49 +1000), Herbert Xu <[EMAIL PROTECTED]> says: > This makes no sense. Why should we include all these proc operations > when PROC_FS is turned off? How about this as a fix (on top of the > above patch): > > [IPV4]: Move snmp_mib

Re: [net-2.6.22] [IPV4]: Fix build without procfs.

2007-04-24 Thread Herbert Xu
YOSHIFUJI Hideaki / <[EMAIL PROTECTED]> wrote: > > diff --git a/net/ipv4/Makefile b/net/ipv4/Makefile > index 4ff6c15..3bd25f5 100644 > --- a/net/ipv4/Makefile > +++ b/net/ipv4/Makefile > @@ -10,11 +10,11 @@ obj-y := route.o inetpeer.o protocol.o \ > tcp_minisocks.o tcp_cong.o

Re: [net-2.6.22] [IPV4]: Fix build without procfs.

2007-04-24 Thread David Miller
From: YOSHIFUJI Hideaki / 吉藤英明 <[EMAIL PROTECTED]> Date: Wed, 25 Apr 2007 00:20:48 +0900 (JST) > Signed-off-by: YOSHIFUJI Hideaki <[EMAIL PROTECTED]> Applied, thanks! - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo i

[net-2.6.22] [IPV4]: Fix build without procfs.

2007-04-24 Thread YOSHIFUJI Hideaki / 吉藤英明
Signed-off-by: YOSHIFUJI Hideaki <[EMAIL PROTECTED]> --- net/ipv4/Makefile |4 ++-- net/ipv4/proc.c |2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/net/ipv4/Makefile b/net/ipv4/Makefile index 4ff6c15..3bd25f5 100644 --- a/net/ipv4/Makefile +++ b/net/ipv4/Makefile @@