Re: [PATCH] [XFRM] Add CONFIG_INET dependency to CONFIG_XFRM_STATISTICS

2008-02-15 Thread Masahide NAKAMURA
Saturday 16 February 2008 08:24, David Miller wrote:
> From: Johann Felix Soden <[EMAIL PROTECTED]>
> Date: Fri, 15 Feb 2008 16:08:43 +0100
> 
> > From: Johann Felix Soden <[EMAIL PROTECTED]>
> > 
> > With INET=n and XFRM_STATISTICS=y I get the following build failure:
> > 
> > net/built-in.o: In function `xfrm_init':
> > (.init.text+0xcd7): undefined reference to `snmp_mib_init'
> > 
> > Signed-off-by: Johann Felix Soden <[EMAIL PROTECTED]>
> > CC: Masahide NAKAMURA <[EMAIL PROTECTED]>
> 
> A fix for this has been in my net-2.6 tree for a few days,
> and Linus pulled it in this morning.

Thank you guys for taking care of it.

-- 
Masahide NAKAMURA
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] [XFRM] Add CONFIG_INET dependency to CONFIG_XFRM_STATISTICS

2008-02-15 Thread David Miller
From: Johann Felix Soden <[EMAIL PROTECTED]>
Date: Fri, 15 Feb 2008 16:08:43 +0100

> From: Johann Felix Soden <[EMAIL PROTECTED]>
> 
> With INET=n and XFRM_STATISTICS=y I get the following build failure:
> 
> net/built-in.o: In function `xfrm_init':
> (.init.text+0xcd7): undefined reference to `snmp_mib_init'
> 
> Signed-off-by: Johann Felix Soden <[EMAIL PROTECTED]>
> CC: Masahide NAKAMURA <[EMAIL PROTECTED]>

A fix for this has been in my net-2.6 tree for a few days,
and Linus pulled it in this morning.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] [XFRM] Add CONFIG_INET dependency to CONFIG_XFRM_STATISTICS

2008-02-15 Thread Johann Felix Soden
From: Johann Felix Soden <[EMAIL PROTECTED]>

With INET=n and XFRM_STATISTICS=y I get the following build failure:

net/built-in.o: In function `xfrm_init':
(.init.text+0xcd7): undefined reference to `snmp_mib_init'

Signed-off-by: Johann Felix Soden <[EMAIL PROTECTED]>
CC: Masahide NAKAMURA <[EMAIL PROTECTED]>
---
 net/xfrm/Kconfig |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/xfrm/Kconfig b/net/xfrm/Kconfig
index 8f9dbec..3bf2338 100644
--- a/net/xfrm/Kconfig
+++ b/net/xfrm/Kconfig
@@ -38,7 +38,7 @@ config XFRM_MIGRATE
 
 config XFRM_STATISTICS
bool "Transformation statistics (EXPERIMENTAL)"
-   depends on XFRM && PROC_FS && EXPERIMENTAL
+   depends on XFRM && PROC_FS && INET && EXPERIMENTAL
---help---
  This statistics is not a SNMP/MIB specification but shows
  statistics about transformation error (or almost error) factor
-- 
1.5.4.1


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html