diff options
-rw-r--r-- | Documentation/feature-removal-schedule.txt | 9 | ||||
-rw-r--r-- | lib/dynamic_debug.c | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index 709e08e9a222..e458d2b2ae95 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
@@ -2,7 +2,14 @@ The following is a list of files and features that are going to be | |||
2 | removed in the kernel source tree. Every entry should contain what | 2 | removed in the kernel source tree. Every entry should contain what |
3 | exactly is going away, why it is happening, and who is going to be doing | 3 | exactly is going away, why it is happening, and who is going to be doing |
4 | the work. When the feature is removed from the kernel, it should also | 4 | the work. When the feature is removed from the kernel, it should also |
5 | be removed from this file. | 5 | be removed from this file. The suggested deprecation period is 3 releases. |
6 | |||
7 | --------------------------- | ||
8 | |||
9 | What: ddebug_query="query" boot cmdline param | ||
10 | When: v3.8 | ||
11 | Why: obsoleted by dyndbg="query" and module.dyndbg="query" | ||
12 | Who: Jim Cromie <jim.cromie@gmail.com>, Jason Baron <jbaron@redhat.com> | ||
6 | 13 | ||
7 | --------------------------- | 14 | --------------------------- |
8 | 15 | ||
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c index 8fba40179305..09f2cda88058 100644 --- a/lib/dynamic_debug.c +++ b/lib/dynamic_debug.c | |||
@@ -993,6 +993,8 @@ static int __init dynamic_debug_init(void) | |||
993 | 993 | ||
994 | /* ddebug_query boot param got passed -> set it up */ | 994 | /* ddebug_query boot param got passed -> set it up */ |
995 | if (ddebug_setup_string[0] != '\0') { | 995 | if (ddebug_setup_string[0] != '\0') { |
996 | pr_warn("ddebug_query param name is deprecated," | ||
997 | " change it to dyndbg\n"); | ||
996 | ret = ddebug_exec_queries(ddebug_setup_string); | 998 | ret = ddebug_exec_queries(ddebug_setup_string); |
997 | if (ret < 0) | 999 | if (ret < 0) |
998 | pr_warn("Invalid ddebug boot param %s", | 1000 | pr_warn("Invalid ddebug boot param %s", |