'KDBFLAGS' is an internal variable of kdb, it is combined by 'KDBDEBUG' and state flags. But the user can define an environment variable named 'KDBFLAGS' too, so let's make it undefinable to avoid confusion.
Signed-off-by: Wei Li <[email protected]> Reviewed-by: Douglas Anderson <[email protected]> --- v1 -> v2: - Fix lack of braces. kernel/debug/kdb/kdb_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c index 4fc43fb17127..75b798340300 100644 --- a/kernel/debug/kdb/kdb_main.c +++ b/kernel/debug/kdb/kdb_main.c @@ -423,6 +423,8 @@ int kdb_set(int argc, const char **argv) | (debugflags << KDB_DEBUG_FLAG_SHIFT); return 0; + } else if (strcmp(argv[1], "KDBFLAGS") == 0) { + return KDB_NOPERM; } /* -- 2.17.1

