diff options
| -rw-r--r-- | lib/dynamic_debug.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c index 8c88b892ebb8..6fc8622f0a83 100644 --- a/lib/dynamic_debug.c +++ b/lib/dynamic_debug.c | |||
| @@ -525,14 +525,16 @@ EXPORT_SYMBOL(__dynamic_netdev_dbg); | |||
| 525 | 525 | ||
| 526 | #endif | 526 | #endif |
| 527 | 527 | ||
| 528 | static __initdata char ddebug_setup_string[1024]; | 528 | #define DDEBUG_STRING_SIZE 1024 |
| 529 | static __initdata char ddebug_setup_string[DDEBUG_STRING_SIZE]; | ||
| 530 | |||
| 529 | static __init int ddebug_setup_query(char *str) | 531 | static __init int ddebug_setup_query(char *str) |
| 530 | { | 532 | { |
| 531 | if (strlen(str) >= 1024) { | 533 | if (strlen(str) >= DDEBUG_STRING_SIZE) { |
| 532 | pr_warn("ddebug boot param string too large\n"); | 534 | pr_warn("ddebug boot param string too large\n"); |
| 533 | return 0; | 535 | return 0; |
| 534 | } | 536 | } |
| 535 | strcpy(ddebug_setup_string, str); | 537 | strlcpy(ddebug_setup_string, str, DDEBUG_STRING_SIZE); |
| 536 | return 1; | 538 | return 1; |
| 537 | } | 539 | } |
| 538 | 540 | ||
