linux-trace-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] docs: Move "debugging" section to the top in index.rst
@ 2025-02-04 13:36 Purva Yeshi
  2025-02-04 16:39 ` Jonathan Corbet
  0 siblings, 1 reply; 3+ messages in thread
From: Purva Yeshi @ 2025-02-04 13:36 UTC (permalink / raw)
  To: rostedt, mhiramat
  Cc: skhan, mathieu.desnoyers, corbet, linux-kernel,
	linux-trace-kernel, linux-doc, Purva Yeshi

Move the "debugging" entry to the top in Documentation/trace/index.rst.
Turn index.rst into a good starting point for people wanting to learn 
about tracing. Make it the first document users see, as it serves as a
tracing tutorial

Signed-off-by: Purva Yeshi <purvayeshi550@gmail.com>
---
 Documentation/trace/index.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/trace/index.rst b/Documentation/trace/index.rst
index 2c991dc96ace..f3d235c8438b 100644
--- a/Documentation/trace/index.rst
+++ b/Documentation/trace/index.rst
@@ -5,6 +5,7 @@ Linux Tracing Technologies
 .. toctree::
    :maxdepth: 2
 
+   debugging
    ftrace-design
    tracepoint-analysis
    ftrace
@@ -24,7 +25,6 @@ Linux Tracing Technologies
    histogram
    histogram-design
    boottime-trace
-   debugging
    hwlat_detector
    osnoise-tracer
    timerlat-tracer
-- 
2.34.1


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

* Re: [PATCH] docs: Move "debugging" section to the top in index.rst
  2025-02-04 13:36 [PATCH] docs: Move "debugging" section to the top in index.rst Purva Yeshi
@ 2025-02-04 16:39 ` Jonathan Corbet
  2025-02-05 13:31   ` Purva Yeshi
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Corbet @ 2025-02-04 16:39 UTC (permalink / raw)
  To: Purva Yeshi, rostedt, mhiramat
  Cc: skhan, mathieu.desnoyers, linux-kernel, linux-trace-kernel,
	linux-doc, Purva Yeshi

Purva Yeshi <purvayeshi550@gmail.com> writes:

> Move the "debugging" entry to the top in Documentation/trace/index.rst.
> Turn index.rst into a good starting point for people wanting to learn 
> about tracing. Make it the first document users see, as it serves as a
> tracing tutorial
>
> Signed-off-by: Purva Yeshi <purvayeshi550@gmail.com>
> ---
>  Documentation/trace/index.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/trace/index.rst b/Documentation/trace/index.rst
> index 2c991dc96ace..f3d235c8438b 100644
> --- a/Documentation/trace/index.rst
> +++ b/Documentation/trace/index.rst
> @@ -5,6 +5,7 @@ Linux Tracing Technologies
>  .. toctree::
>     :maxdepth: 2
>  
> +   debugging
>     ftrace-design
>     tracepoint-analysis
>     ftrace
> @@ -24,7 +25,6 @@ Linux Tracing Technologies
>     histogram
>     histogram-design
>     boottime-trace
> -   debugging
>     hwlat_detector
>     osnoise-tracer

So I totally approve of improving our index.rst files.  Without some
occasional maintenance, they become unorganized dumping grounds, and
Documentation/trace appears to be no exception.

This small change does not really help, though.  Could I please
encourage you to consider bringing some real order to this page?  As an
example, you could look at commit 270beb5b2aae from 6.13.

Thanks,

jon

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

* Re: [PATCH] docs: Move "debugging" section to the top in index.rst
  2025-02-04 16:39 ` Jonathan Corbet
@ 2025-02-05 13:31   ` Purva Yeshi
  0 siblings, 0 replies; 3+ messages in thread
From: Purva Yeshi @ 2025-02-05 13:31 UTC (permalink / raw)
  To: Jonathan Corbet, rostedt, mhiramat
  Cc: skhan, mathieu.desnoyers, linux-kernel, linux-trace-kernel,
	linux-doc

On 04/02/25 22:09, Jonathan Corbet wrote:
> Purva Yeshi <purvayeshi550@gmail.com> writes:
> 
>> Move the "debugging" entry to the top in Documentation/trace/index.rst.
>> Turn index.rst into a good starting point for people wanting to learn
>> about tracing. Make it the first document users see, as it serves as a
>> tracing tutorial
>>
>> Signed-off-by: Purva Yeshi <purvayeshi550@gmail.com>
>> ---
>>   Documentation/trace/index.rst | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/Documentation/trace/index.rst b/Documentation/trace/index.rst
>> index 2c991dc96ace..f3d235c8438b 100644
>> --- a/Documentation/trace/index.rst
>> +++ b/Documentation/trace/index.rst
>> @@ -5,6 +5,7 @@ Linux Tracing Technologies
>>   .. toctree::
>>      :maxdepth: 2
>>   
>> +   debugging
>>      ftrace-design
>>      tracepoint-analysis
>>      ftrace
>> @@ -24,7 +25,6 @@ Linux Tracing Technologies
>>      histogram
>>      histogram-design
>>      boottime-trace
>> -   debugging
>>      hwlat_detector
>>      osnoise-tracer
> 
> So I totally approve of improving our index.rst files.  Without some
> occasional maintenance, they become unorganized dumping grounds, and
> Documentation/trace appears to be no exception.
> 
> This small change does not really help, though.  Could I please
> encourage you to consider bringing some real order to this page?  As an
> example, you could look at commit 270beb5b2aae from 6.13.
> 
> Thanks,
> 
> jon

Thanks for your feedback. I'll review commit 270beb5b2aae and work on a 
more comprehensive reorganization to bring better order to 
Documentation/trace/index.rst page.

I'll follow up with an updated patch soon.

Best regards,
Purva Yeshi

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

end of thread, other threads:[~2025-02-05 13:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-04 13:36 [PATCH] docs: Move "debugging" section to the top in index.rst Purva Yeshi
2025-02-04 16:39 ` Jonathan Corbet
2025-02-05 13:31   ` Purva Yeshi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).