[v1] Documentation: kgdb: Correct parameter error

Changhuang Liang posted 1 patch 2 months, 2 weeks ago
There is a newer version of this series
Documentation/dev-tools/kgdb.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[v1] Documentation: kgdb: Correct parameter error
Posted by Changhuang Liang 2 months, 2 weeks ago
Module kgdb had been converted to debug_core since commit c433820971ff
("Move kernel/kgdb.c to kernel/debug/debug_core.c") be added, so let's
correct the module parameter path.

Signed-off-by: Changhuang Liang <changhuang.liang@starfivetech.com>
---
 Documentation/dev-tools/kgdb.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/dev-tools/kgdb.rst b/Documentation/dev-tools/kgdb.rst
index f83ba2601e55..a87a58e6509a 100644
--- a/Documentation/dev-tools/kgdb.rst
+++ b/Documentation/dev-tools/kgdb.rst
@@ -329,7 +329,7 @@ ways to activate this feature.
 
 2. Use sysfs before configuring an I/O driver::
 
-	echo 1 > /sys/module/kgdb/parameters/kgdb_use_con
+	echo 1 > /sys/module/debug_core/parameters/kgdb_use_con
 
 .. note::
 
-- 
2.25.1
Re: [v1] Documentation: kgdb: Correct parameter error
Posted by Doug Anderson 2 months, 2 weeks ago
Hi,

On Sat, Sep 14, 2024 at 12:03 AM Changhuang Liang
<changhuang.liang@starfivetech.com> wrote:
>
> Module kgdb had been converted to debug_core since commit c433820971ff
> ("Move kernel/kgdb.c to kernel/debug/debug_core.c") be added, so let's
> correct the module parameter path.
>
> Signed-off-by: Changhuang Liang <changhuang.liang@starfivetech.com>
> ---
>  Documentation/dev-tools/kgdb.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

I guess this could have a "Fixes" based on the commit mentioned in the
commit message. Patch looks right to me:

Reviewed-by: Douglas Anderson <dianders@chromium.org>