workflows.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Documentation: move dev-tools debugging files to process/debugging/
@ 2024-12-04 22:17 Randy Dunlap
  2024-12-04 23:07 ` Doug Anderson
  2024-12-06 16:38 ` Jonathan Corbet
  0 siblings, 2 replies; 9+ messages in thread
From: Randy Dunlap @ 2024-12-04 22:17 UTC (permalink / raw)
  To: linux-doc
  Cc: Randy Dunlap, Sebastian Fricke, Jonathan Corbet, workflows,
	Jason Wessel, Daniel Thompson, Douglas Anderson, linux-debuggers,
	kgdb-bugreport

Move gdb and kgdb debugging documentation to the dedicated
debugging directory (Documentation/process/debugging/).
Adjust the index.rst files to follow the file movement.
Update location of kgdb.rst in MAINTAINERS file.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Sebastian Fricke <sebastian.fricke@collabora.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: workflows@vger.kernel.org
Cc: Jason Wessel <jason.wessel@windriver.com>
Cc: Daniel Thompson <danielt@kernel.org>
Cc: Douglas Anderson <dianders@chromium.org>
Cc: linux-debuggers@vger.kernel.org
Cc: kgdb-bugreport@lists.sourceforge.net
---
 Documentation/dev-tools/index.rst                                       | 2 --
 Documentation/{dev-tools => process/debugging}/gdb-kernel-debugging.rst | 0
 Documentation/process/debugging/index.rst                               | 2 ++
 Documentation/{dev-tools => process/debugging}/kgdb.rst                 | 0
 MAINTAINERS                                                             | 2 +-
 5 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Documentation/dev-tools/index.rst b/Documentation/dev-tools/index.rst
index 3c0ac08b2709..c1e73e75f551 100644
--- a/Documentation/dev-tools/index.rst
+++ b/Documentation/dev-tools/index.rst
@@ -27,8 +27,6 @@ Documentation/dev-tools/testing-overview.rst
    kmemleak
    kcsan
    kfence
-   gdb-kernel-debugging
-   kgdb
    kselftest
    kunit/index
    ktap
diff --git a/Documentation/dev-tools/gdb-kernel-debugging.rst b/Documentation/process/debugging/gdb-kernel-debugging.rst
similarity index 100%
rename from Documentation/dev-tools/gdb-kernel-debugging.rst
rename to Documentation/process/debugging/gdb-kernel-debugging.rst
diff --git a/Documentation/process/debugging/index.rst b/Documentation/process/debugging/index.rst
index f6e4a00dfee3..bc4a816e3d32 100644
--- a/Documentation/process/debugging/index.rst
+++ b/Documentation/process/debugging/index.rst
@@ -12,6 +12,8 @@ general guides
 
    driver_development_debugging_guide
    userspace_debugging_guide
+   gdb-kernel-debugging
+   kgdb
 
 .. only::  subproject and html
 
diff --git a/Documentation/dev-tools/kgdb.rst b/Documentation/process/debugging/kgdb.rst
similarity index 100%
rename from Documentation/dev-tools/kgdb.rst
rename to Documentation/process/debugging/kgdb.rst
diff --git a/MAINTAINERS b/MAINTAINERS
index 1e930c7a58b1..1753fe792d04 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -12809,7 +12809,7 @@ L:	kgdb-bugreport@lists.sourceforge.net
 S:	Maintained
 W:	http://kgdb.wiki.kernel.org/
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
-F:	Documentation/dev-tools/kgdb.rst
+F:	Documentation/process/debugging/kgdb.rst
 F:	drivers/misc/kgdbts.c
 F:	drivers/tty/serial/kgdboc.c
 F:	include/linux/kdb.h

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] Documentation: move dev-tools debugging files to process/debugging/
  2024-12-04 22:17 [PATCH] Documentation: move dev-tools debugging files to process/debugging/ Randy Dunlap
@ 2024-12-04 23:07 ` Doug Anderson
  2024-12-04 23:09   ` Randy Dunlap
  2024-12-06 16:38 ` Jonathan Corbet
  1 sibling, 1 reply; 9+ messages in thread
From: Doug Anderson @ 2024-12-04 23:07 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: linux-doc, Sebastian Fricke, Jonathan Corbet, workflows,
	Jason Wessel, Daniel Thompson, linux-debuggers, kgdb-bugreport

Hi,

On Wed, Dec 4, 2024 at 2:17 PM Randy Dunlap <rdunlap@infradead.org> wrote:
>
> Move gdb and kgdb debugging documentation to the dedicated
> debugging directory (Documentation/process/debugging/).
> Adjust the index.rst files to follow the file movement.
> Update location of kgdb.rst in MAINTAINERS file.
>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Sebastian Fricke <sebastian.fricke@collabora.com>
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: workflows@vger.kernel.org
> Cc: Jason Wessel <jason.wessel@windriver.com>
> Cc: Daniel Thompson <danielt@kernel.org>
> Cc: Douglas Anderson <dianders@chromium.org>
> Cc: linux-debuggers@vger.kernel.org
> Cc: kgdb-bugreport@lists.sourceforge.net
> ---
>  Documentation/dev-tools/index.rst                                       | 2 --
>  Documentation/{dev-tools => process/debugging}/gdb-kernel-debugging.rst | 0

After applying your patch and doing `git grep
gdb-kernel-debugging.rst`, I still see several references to the old
location. Those should be updated as part of this patch, right?



>  Documentation/process/debugging/index.rst                               | 2 ++
>  Documentation/{dev-tools => process/debugging}/kgdb.rst                 | 0

Similarly `git grep kgdb.rst` still has several references to the old location.

>  MAINTAINERS                                                             | 2 +-
>  5 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/Documentation/dev-tools/index.rst b/Documentation/dev-tools/index.rst
> index 3c0ac08b2709..c1e73e75f551 100644
> --- a/Documentation/dev-tools/index.rst
> +++ b/Documentation/dev-tools/index.rst
> @@ -27,8 +27,6 @@ Documentation/dev-tools/testing-overview.rst
>     kmemleak
>     kcsan
>     kfence
> -   gdb-kernel-debugging
> -   kgdb
>     kselftest
>     kunit/index
>     ktap
> diff --git a/Documentation/dev-tools/gdb-kernel-debugging.rst b/Documentation/process/debugging/gdb-kernel-debugging.rst
> similarity index 100%
> rename from Documentation/dev-tools/gdb-kernel-debugging.rst
> rename to Documentation/process/debugging/gdb-kernel-debugging.rst
> diff --git a/Documentation/process/debugging/index.rst b/Documentation/process/debugging/index.rst
> index f6e4a00dfee3..bc4a816e3d32 100644
> --- a/Documentation/process/debugging/index.rst
> +++ b/Documentation/process/debugging/index.rst
> @@ -12,6 +12,8 @@ general guides
>
>     driver_development_debugging_guide
>     userspace_debugging_guide
> +   gdb-kernel-debugging
> +   kgdb

Should the list above be kept alphabetical. The list you removed these
entries from was _almost_ alphabetical...

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] Documentation: move dev-tools debugging files to process/debugging/
  2024-12-04 23:07 ` Doug Anderson
@ 2024-12-04 23:09   ` Randy Dunlap
  2024-12-05  9:09     ` Sebastian Fricke
  0 siblings, 1 reply; 9+ messages in thread
From: Randy Dunlap @ 2024-12-04 23:09 UTC (permalink / raw)
  To: Doug Anderson
  Cc: linux-doc, Sebastian Fricke, Jonathan Corbet, workflows,
	Jason Wessel, Daniel Thompson, linux-debuggers, kgdb-bugreport



On 12/4/24 3:07 PM, Doug Anderson wrote:
> Hi,
> 
> On Wed, Dec 4, 2024 at 2:17 PM Randy Dunlap <rdunlap@infradead.org> wrote:
>>
>> Move gdb and kgdb debugging documentation to the dedicated
>> debugging directory (Documentation/process/debugging/).
>> Adjust the index.rst files to follow the file movement.
>> Update location of kgdb.rst in MAINTAINERS file.
>>
>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
>> Cc: Sebastian Fricke <sebastian.fricke@collabora.com>
>> Cc: Jonathan Corbet <corbet@lwn.net>
>> Cc: workflows@vger.kernel.org
>> Cc: Jason Wessel <jason.wessel@windriver.com>
>> Cc: Daniel Thompson <danielt@kernel.org>
>> Cc: Douglas Anderson <dianders@chromium.org>
>> Cc: linux-debuggers@vger.kernel.org
>> Cc: kgdb-bugreport@lists.sourceforge.net
>> ---
>>  Documentation/dev-tools/index.rst                                       | 2 --
>>  Documentation/{dev-tools => process/debugging}/gdb-kernel-debugging.rst | 0
> 
> After applying your patch and doing `git grep
> gdb-kernel-debugging.rst`, I still see several references to the old
> location. Those should be updated as part of this patch, right?
> 
> 
> 
>>  Documentation/process/debugging/index.rst                               | 2 ++
>>  Documentation/{dev-tools => process/debugging}/kgdb.rst                 | 0
> 
> Similarly `git grep kgdb.rst` still has several references to the old location.


Thanks. I should have done that.  :(

>>  MAINTAINERS                                                             | 2 +-
>>  5 files changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/Documentation/dev-tools/index.rst b/Documentation/dev-tools/index.rst
>> index 3c0ac08b2709..c1e73e75f551 100644
>> --- a/Documentation/dev-tools/index.rst
>> +++ b/Documentation/dev-tools/index.rst
>> @@ -27,8 +27,6 @@ Documentation/dev-tools/testing-overview.rst
>>     kmemleak
>>     kcsan
>>     kfence
>> -   gdb-kernel-debugging
>> -   kgdb
>>     kselftest
>>     kunit/index
>>     ktap
>> diff --git a/Documentation/dev-tools/gdb-kernel-debugging.rst b/Documentation/process/debugging/gdb-kernel-debugging.rst
>> similarity index 100%
>> rename from Documentation/dev-tools/gdb-kernel-debugging.rst
>> rename to Documentation/process/debugging/gdb-kernel-debugging.rst
>> diff --git a/Documentation/process/debugging/index.rst b/Documentation/process/debugging/index.rst
>> index f6e4a00dfee3..bc4a816e3d32 100644
>> --- a/Documentation/process/debugging/index.rst
>> +++ b/Documentation/process/debugging/index.rst
>> @@ -12,6 +12,8 @@ general guides
>>
>>     driver_development_debugging_guide
>>     userspace_debugging_guide
>> +   gdb-kernel-debugging
>> +   kgdb
> 
> Should the list above be kept alphabetical. The list you removed these
> entries from was _almost_ alphabetical...

Not that I know of.  I'll listen for other opinions though.

Thanks.

-- 
~Randy


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] Documentation: move dev-tools debugging files to process/debugging/
  2024-12-04 23:09   ` Randy Dunlap
@ 2024-12-05  9:09     ` Sebastian Fricke
  2024-12-05 17:08       ` Randy Dunlap
  0 siblings, 1 reply; 9+ messages in thread
From: Sebastian Fricke @ 2024-12-05  9:09 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Doug Anderson, linux-doc, Jonathan Corbet, workflows,
	Jason Wessel, Daniel Thompson, linux-debuggers, kgdb-bugreport

Greetings!

On 04.12.2024 15:09, Randy Dunlap wrote:
>
>
>On 12/4/24 3:07 PM, Doug Anderson wrote:
>> Hi,
>>
>> On Wed, Dec 4, 2024 at 2:17 PM Randy Dunlap <rdunlap@infradead.org> wrote:
>>>
>>> Move gdb and kgdb debugging documentation to the dedicated
>>> debugging directory (Documentation/process/debugging/).
>>> Adjust the index.rst files to follow the file movement.
>>> Update location of kgdb.rst in MAINTAINERS file.
>>>
>>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
>>> Cc: Sebastian Fricke <sebastian.fricke@collabora.com>
>>> Cc: Jonathan Corbet <corbet@lwn.net>
>>> Cc: workflows@vger.kernel.org
>>> Cc: Jason Wessel <jason.wessel@windriver.com>
>>> Cc: Daniel Thompson <danielt@kernel.org>
>>> Cc: Douglas Anderson <dianders@chromium.org>
>>> Cc: linux-debuggers@vger.kernel.org
>>> Cc: kgdb-bugreport@lists.sourceforge.net
>>> ---
>>>  Documentation/dev-tools/index.rst                                       | 2 --
>>>  Documentation/{dev-tools => process/debugging}/gdb-kernel-debugging.rst | 0
>>
>> After applying your patch and doing `git grep
>> gdb-kernel-debugging.rst`, I still see several references to the old
>> location. Those should be updated as part of this patch, right?
>>
>>
>>
>>>  Documentation/process/debugging/index.rst                               | 2 ++
>>>  Documentation/{dev-tools => process/debugging}/kgdb.rst                 | 0
>>
>> Similarly `git grep kgdb.rst` still has several references to the old location.
>
>
>Thanks. I should have done that.  :(
>
>>>  MAINTAINERS                                                             | 2 +-
>>>  5 files changed, 3 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/Documentation/dev-tools/index.rst b/Documentation/dev-tools/index.rst
>>> index 3c0ac08b2709..c1e73e75f551 100644
>>> --- a/Documentation/dev-tools/index.rst
>>> +++ b/Documentation/dev-tools/index.rst
>>> @@ -27,8 +27,6 @@ Documentation/dev-tools/testing-overview.rst
>>>     kmemleak
>>>     kcsan
>>>     kfence
>>> -   gdb-kernel-debugging
>>> -   kgdb
>>>     kselftest
>>>     kunit/index
>>>     ktap
>>> diff --git a/Documentation/dev-tools/gdb-kernel-debugging.rst b/Documentation/process/debugging/gdb-kernel-debugging.rst
>>> similarity index 100%
>>> rename from Documentation/dev-tools/gdb-kernel-debugging.rst
>>> rename to Documentation/process/debugging/gdb-kernel-debugging.rst
>>> diff --git a/Documentation/process/debugging/index.rst b/Documentation/process/debugging/index.rst
>>> index f6e4a00dfee3..bc4a816e3d32 100644
>>> --- a/Documentation/process/debugging/index.rst
>>> +++ b/Documentation/process/debugging/index.rst
>>> @@ -12,6 +12,8 @@ general guides
>>>
>>>     driver_development_debugging_guide
>>>     userspace_debugging_guide
>>> +   gdb-kernel-debugging
>>> +   kgdb
>>
>> Should the list above be kept alphabetical. The list you removed these
>> entries from was _almost_ alphabetical...
>
>Not that I know of.  I'll listen for other opinions though.

I'd say it is easy enough for us to do, so I'd advocate for making the
list alphabetical (.. even though I forgot to do that in my initial list 😅)

>
>Thanks.
>
>-- 
>~Randy
>

Regards,
Sebastian Fricke

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] Documentation: move dev-tools debugging files to process/debugging/
  2024-12-05  9:09     ` Sebastian Fricke
@ 2024-12-05 17:08       ` Randy Dunlap
  0 siblings, 0 replies; 9+ messages in thread
From: Randy Dunlap @ 2024-12-05 17:08 UTC (permalink / raw)
  To: Sebastian Fricke
  Cc: Doug Anderson, linux-doc, Jonathan Corbet, workflows,
	Jason Wessel, Daniel Thompson, linux-debuggers, kgdb-bugreport



On 12/5/24 1:09 AM, Sebastian Fricke wrote:
> Greetings!
> 
> On 04.12.2024 15:09, Randy Dunlap wrote:
>>
>>
>> On 12/4/24 3:07 PM, Doug Anderson wrote:
>>> Hi,
>>>
>>> On Wed, Dec 4, 2024 at 2:17 PM Randy Dunlap <rdunlap@infradead.org> wrote:
>>>>
>>>> Move gdb and kgdb debugging documentation to the dedicated
>>>> debugging directory (Documentation/process/debugging/).
>>>> Adjust the index.rst files to follow the file movement.
>>>> Update location of kgdb.rst in MAINTAINERS file.
>>>>
>>>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
>>>> Cc: Sebastian Fricke <sebastian.fricke@collabora.com>
>>>> Cc: Jonathan Corbet <corbet@lwn.net>
>>>> Cc: workflows@vger.kernel.org
>>>> Cc: Jason Wessel <jason.wessel@windriver.com>
>>>> Cc: Daniel Thompson <danielt@kernel.org>
>>>> Cc: Douglas Anderson <dianders@chromium.org>
>>>> Cc: linux-debuggers@vger.kernel.org
>>>> Cc: kgdb-bugreport@lists.sourceforge.net
>>>> ---
>>>>  Documentation/dev-tools/index.rst                                       | 2 --
>>>>  Documentation/{dev-tools => process/debugging}/gdb-kernel-debugging.rst | 0
>>>
>>> After applying your patch and doing `git grep
>>> gdb-kernel-debugging.rst`, I still see several references to the old
>>> location. Those should be updated as part of this patch, right?
>>>
>>>
>>>
>>>>  Documentation/process/debugging/index.rst                               | 2 ++
>>>>  Documentation/{dev-tools => process/debugging}/kgdb.rst                 | 0
>>>
>>> Similarly `git grep kgdb.rst` still has several references to the old location.
>>
>>
>> Thanks. I should have done that.  :(
>>
>>>>  MAINTAINERS                                                             | 2 +-
>>>>  5 files changed, 3 insertions(+), 3 deletions(-)
>>>>
>>>> diff --git a/Documentation/dev-tools/index.rst b/Documentation/dev-tools/index.rst
>>>> index 3c0ac08b2709..c1e73e75f551 100644
>>>> --- a/Documentation/dev-tools/index.rst
>>>> +++ b/Documentation/dev-tools/index.rst
>>>> @@ -27,8 +27,6 @@ Documentation/dev-tools/testing-overview.rst
>>>>     kmemleak
>>>>     kcsan
>>>>     kfence
>>>> -   gdb-kernel-debugging
>>>> -   kgdb
>>>>     kselftest
>>>>     kunit/index
>>>>     ktap
>>>> diff --git a/Documentation/dev-tools/gdb-kernel-debugging.rst b/Documentation/process/debugging/gdb-kernel-debugging.rst
>>>> similarity index 100%
>>>> rename from Documentation/dev-tools/gdb-kernel-debugging.rst
>>>> rename to Documentation/process/debugging/gdb-kernel-debugging.rst
>>>> diff --git a/Documentation/process/debugging/index.rst b/Documentation/process/debugging/index.rst
>>>> index f6e4a00dfee3..bc4a816e3d32 100644
>>>> --- a/Documentation/process/debugging/index.rst
>>>> +++ b/Documentation/process/debugging/index.rst
>>>> @@ -12,6 +12,8 @@ general guides
>>>>
>>>>     driver_development_debugging_guide
>>>>     userspace_debugging_guide
>>>> +   gdb-kernel-debugging
>>>> +   kgdb
>>>
>>> Should the list above be kept alphabetical. The list you removed these
>>> entries from was _almost_ alphabetical...
>>
>> Not that I know of.  I'll listen for other opinions though.
> 
> I'd say it is easy enough for us to do, so I'd advocate for making the
> list alphabetical (.. even though I forgot to do that in my initial list 😅)

OK, will do.
Thanks.

-- 
~Randy


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] Documentation: move dev-tools debugging files to process/debugging/
  2024-12-04 22:17 [PATCH] Documentation: move dev-tools debugging files to process/debugging/ Randy Dunlap
  2024-12-04 23:07 ` Doug Anderson
@ 2024-12-06 16:38 ` Jonathan Corbet
  2024-12-06 23:57   ` Randy Dunlap
  1 sibling, 1 reply; 9+ messages in thread
From: Jonathan Corbet @ 2024-12-06 16:38 UTC (permalink / raw)
  To: Randy Dunlap, linux-doc
  Cc: Randy Dunlap, Sebastian Fricke, workflows, Jason Wessel,
	Daniel Thompson, Douglas Anderson, linux-debuggers,
	kgdb-bugreport

Randy Dunlap <rdunlap@infradead.org> writes:

> Move gdb and kgdb debugging documentation to the dedicated
> debugging directory (Documentation/process/debugging/).
> Adjust the index.rst files to follow the file movement.
> Update location of kgdb.rst in MAINTAINERS file.
>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>

So ... since these are indeed development tools, I wonder if we should
leave a reference behind in case people are looking for them there?

jon

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] Documentation: move dev-tools debugging files to process/debugging/
  2024-12-06 16:38 ` Jonathan Corbet
@ 2024-12-06 23:57   ` Randy Dunlap
  2024-12-07  8:50     ` Sebastian Fricke
  0 siblings, 1 reply; 9+ messages in thread
From: Randy Dunlap @ 2024-12-06 23:57 UTC (permalink / raw)
  To: Jonathan Corbet, linux-doc
  Cc: Sebastian Fricke, workflows, Jason Wessel, Daniel Thompson,
	Douglas Anderson, linux-debuggers, kgdb-bugreport



On 12/6/24 8:38 AM, Jonathan Corbet wrote:
> Randy Dunlap <rdunlap@infradead.org> writes:
> 
>> Move gdb and kgdb debugging documentation to the dedicated
>> debugging directory (Documentation/process/debugging/).
>> Adjust the index.rst files to follow the file movement.
>> Update location of kgdb.rst in MAINTAINERS file.
>>
>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> 
> So ... since these are indeed development tools, I wonder if we should
> leave a reference behind in case people are looking for them there?

As far as I'm concerned, all debug tools are development tools, so I'm back
to all of /process/debugging/ should be somewhere else.  ;)

cheers.
-- 
~Randy


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] Documentation: move dev-tools debugging files to process/debugging/
  2024-12-06 23:57   ` Randy Dunlap
@ 2024-12-07  8:50     ` Sebastian Fricke
  2024-12-07 23:11       ` Randy Dunlap
  0 siblings, 1 reply; 9+ messages in thread
From: Sebastian Fricke @ 2024-12-07  8:50 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Jonathan Corbet, linux-doc, workflows, Jason Wessel,
	Daniel Thompson, Douglas Anderson, linux-debuggers,
	kgdb-bugreport

Hey Randy,

On 06.12.2024 15:57, Randy Dunlap wrote:
>
>
>On 12/6/24 8:38 AM, Jonathan Corbet wrote:
>> Randy Dunlap <rdunlap@infradead.org> writes:
>>
>>> Move gdb and kgdb debugging documentation to the dedicated
>>> debugging directory (Documentation/process/debugging/).
>>> Adjust the index.rst files to follow the file movement.
>>> Update location of kgdb.rst in MAINTAINERS file.
>>>
>>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
>>
>> So ... since these are indeed development tools, I wonder if we should
>> leave a reference behind in case people are looking for them there?
>
>As far as I'm concerned, all debug tools are development tools, so I'm back
>to all of /process/debugging/ should be somewhere else.  ;)

I mean this is where things just simply overlap, because debugging is
part of the development process and all debugging tools are development
tools, so I think the question is not whether one of the two places is
the "correct" but instead the user should be able to find the necessary
information by navigating to any of the two places.
So I would say, lets add a reference in the index of the development
tools that highlights the documentation of the debugging tools which are
found in the development process documentation.

>
>cheers.
>-- 
>~Randy

Regards,

Sebastian Fricke

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] Documentation: move dev-tools debugging files to process/debugging/
  2024-12-07  8:50     ` Sebastian Fricke
@ 2024-12-07 23:11       ` Randy Dunlap
  0 siblings, 0 replies; 9+ messages in thread
From: Randy Dunlap @ 2024-12-07 23:11 UTC (permalink / raw)
  To: Sebastian Fricke
  Cc: Jonathan Corbet, linux-doc, workflows, Jason Wessel,
	Daniel Thompson, Douglas Anderson, linux-debuggers,
	kgdb-bugreport



On 12/7/24 12:50 AM, Sebastian Fricke wrote:
> Hey Randy,
> 
> On 06.12.2024 15:57, Randy Dunlap wrote:
>>
>>
>> On 12/6/24 8:38 AM, Jonathan Corbet wrote:
>>> Randy Dunlap <rdunlap@infradead.org> writes:
>>>
>>>> Move gdb and kgdb debugging documentation to the dedicated
>>>> debugging directory (Documentation/process/debugging/).
>>>> Adjust the index.rst files to follow the file movement.
>>>> Update location of kgdb.rst in MAINTAINERS file.
>>>>
>>>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
>>>
>>> So ... since these are indeed development tools, I wonder if we should
>>> leave a reference behind in case people are looking for them there?
>>
>> As far as I'm concerned, all debug tools are development tools, so I'm back
>> to all of /process/debugging/ should be somewhere else.  ;)
> 
> I mean this is where things just simply overlap, because debugging is
> part of the development process and all debugging tools are development
> tools, so I think the question is not whether one of the two places is
> the "correct" but instead the user should be able to find the necessary
> information by navigating to any of the two places.
> So I would say, lets add a reference in the index of the development
> tools that highlights the documentation of the debugging tools which are
> found in the development process documentation.
> 

Hi,

Sure, I will add entries in dev-tools/index.

Thanks.

-- 
~Randy


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2024-12-07 23:13 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-12-04 22:17 [PATCH] Documentation: move dev-tools debugging files to process/debugging/ Randy Dunlap
2024-12-04 23:07 ` Doug Anderson
2024-12-04 23:09   ` Randy Dunlap
2024-12-05  9:09     ` Sebastian Fricke
2024-12-05 17:08       ` Randy Dunlap
2024-12-06 16:38 ` Jonathan Corbet
2024-12-06 23:57   ` Randy Dunlap
2024-12-07  8:50     ` Sebastian Fricke
2024-12-07 23:11       ` Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox