diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2005-08-13 20:35:39 -0300 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-08-29 15:59:43 -0700 |
commit | 725ba8eee3881e619c8e5a0116f1bdb6480ac2d9 (patch) | |
tree | e4d92f0fcbac811ae5954f771794165225b0726f /net/dccp/dccp.h | |
parent | 531669a0a9041d60d13920973ef8aa4f743c14a0 (diff) | |
download | linux-3.10-725ba8eee3881e619c8e5a0116f1bdb6480ac2d9.tar.gz linux-3.10-725ba8eee3881e619c8e5a0116f1bdb6480ac2d9.tar.bz2 linux-3.10-725ba8eee3881e619c8e5a0116f1bdb6480ac2d9.zip |
[DCCP]: Introduce the DCCP Kernel hacking menu
Only available if CONFIG_DEBUG_KERNEL is enabled in the "Kernel
Hacking" Menu.
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/dccp.h')
-rw-r--r-- | net/dccp/dccp.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/dccp/dccp.h b/net/dccp/dccp.h index 62e735f1807..270f1943996 100644 --- a/net/dccp/dccp.h +++ b/net/dccp/dccp.h @@ -11,14 +11,13 @@ * published by the Free Software Foundation. */ +#include <linux/config.h> #include <linux/dccp.h> #include <net/snmp.h> #include <net/sock.h> #include <net/tcp.h> -#define DCCP_DEBUG - -#ifdef DCCP_DEBUG +#ifdef CONFIG_IP_DCCP_DEBUG extern int dccp_debug; #define dccp_pr_debug(format, a...) \ @@ -426,7 +425,7 @@ extern int dccp_ackpkts_add(struct dccp_ackpkts *ap, u64 ackno, u8 state); extern void dccp_ackpkts_check_rcv_ackno(struct dccp_ackpkts *ap, struct sock *sk, u64 ackno); -#ifdef DCCP_DEBUG +#ifdef CONFIG_IP_DCCP_DEBUG extern void dccp_ackvector_print(const u64 ackno, const unsigned char *vector, int len); extern void dccp_ackpkts_print(const struct dccp_ackpkts *ap); |