diff options
author | Roland Dreier <rolandd@cisco.com> | 2006-04-02 14:39:19 -0700 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2006-04-02 14:39:19 -0700 |
commit | f5545d24b8aa9fccd8071203e83bc9f4b26e17a6 (patch) | |
tree | c58bc4967eb3eff701acba0e9ea295fbc4c68c89 /drivers/infiniband | |
parent | 37289efe3ee0c0a00b5d8302df9a2b007e65c187 (diff) | |
download | linux-3.10-f5545d24b8aa9fccd8071203e83bc9f4b26e17a6.tar.gz linux-3.10-f5545d24b8aa9fccd8071203e83bc9f4b26e17a6.tar.bz2 linux-3.10-f5545d24b8aa9fccd8071203e83bc9f4b26e17a6.zip |
IPoIB: Always build debugging code unless CONFIG_EMBEDDED=y
Don't allow CONFIG_INFINIBAND_IPOIB_DEBUG to be disabled unless
CONFIG_EMBEDDED is selected. We want users (and especially distros)
to have this turned on unless they really need to save space, because
by the time we want debugging output, it's usually too late to rebuild
a kernel. The debugging output can be controlled at runtime via the
debug_level module parameter in sysfs.
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/ulp/ipoib/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/infiniband/ulp/ipoib/Kconfig b/drivers/infiniband/ulp/ipoib/Kconfig index 8d2e04cac68..13d6d01c72c 100644 --- a/drivers/infiniband/ulp/ipoib/Kconfig +++ b/drivers/infiniband/ulp/ipoib/Kconfig @@ -10,8 +10,9 @@ config INFINIBAND_IPOIB group: <http://www.ietf.org/html.charters/ipoib-charter.html>. config INFINIBAND_IPOIB_DEBUG - bool "IP-over-InfiniBand debugging" + bool "IP-over-InfiniBand debugging" if EMBEDDED depends on INFINIBAND_IPOIB + default y ---help--- This option causes debugging code to be compiled into the IPoIB driver. The output can be turned on via the |