Skip to content

Commit

Permalink
dccp: re-enable debug macro
Browse files Browse the repository at this point in the history
dccp tfrc: revert

This reverts 6aee49c ("dccp: make local variable static") since
the variable tfrc_debug is referenced by the tfrc_pr_debug(fmt, ...)
macro when TFRC debugging is enabled. If it is enabled, use of the
macro produces a compilation error.

Signed-off-by: Gerrit Renker <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Gerrit Renker authored and davem330 committed Feb 17, 2014
1 parent eb2d4c6 commit 09db308
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion net/dccp/ccids/lib/tfrc.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "tfrc.h"

#ifdef CONFIG_IP_DCCP_TFRC_DEBUG
static bool tfrc_debug;
bool tfrc_debug;
module_param(tfrc_debug, bool, 0644);
MODULE_PARM_DESC(tfrc_debug, "Enable TFRC debug messages");
#endif
Expand Down
1 change: 1 addition & 0 deletions net/dccp/ccids/lib/tfrc.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "packet_history.h"

#ifdef CONFIG_IP_DCCP_TFRC_DEBUG
extern bool tfrc_debug;
#define tfrc_pr_debug(format, a...) DCCP_PR_DEBUG(tfrc_debug, format, ##a)
#else
#define tfrc_pr_debug(format, a...)
Expand Down

0 comments on commit 09db308

Please sign in to comment.