mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN
@ 2024-07-25 17:46 Haoyang Liu
  2024-07-26  1:36 ` Dongliang Mu
  2024-09-04 14:04 ` Jonathan Corbet
  0 siblings, 2 replies; 9+ messages in thread
From: Haoyang Liu @ 2024-07-25 17:46 UTC (permalink / raw)
  To: Marco Elver, Dmitry Vyukov, Jonathan Corbet
  Cc: hust-os-kernel-patches, Haoyang Liu, kasan-dev, linux-doc, linux-kernel

The KTSAN doc has moved to
https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md.
Update the url in kcsan.rst accordingly.

Signed-off-by: Haoyang Liu <tttturtleruss@hust.edu.cn>
---
 Documentation/dev-tools/kcsan.rst | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/dev-tools/kcsan.rst b/Documentation/dev-tools/kcsan.rst
index 02143f060b22..d81c42d1063e 100644
--- a/Documentation/dev-tools/kcsan.rst
+++ b/Documentation/dev-tools/kcsan.rst
@@ -361,7 +361,8 @@ Alternatives Considered
 -----------------------
 
 An alternative data race detection approach for the kernel can be found in the
-`Kernel Thread Sanitizer (KTSAN) <https://github.com/google/ktsan/wiki>`_.
+`Kernel Thread Sanitizer (KTSAN)
+<https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md>`_.
 KTSAN is a happens-before data race detector, which explicitly establishes the
 happens-before order between memory operations, which can then be used to
 determine data races as defined in `Data Races`_.
-- 
2.25.1


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

* Re: [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN
  2024-07-25 17:46 [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN Haoyang Liu
@ 2024-07-26  1:36 ` Dongliang Mu
  2024-07-26  8:38   ` Marco Elver
  2024-09-04 14:04 ` Jonathan Corbet
  1 sibling, 1 reply; 9+ messages in thread
From: Dongliang Mu @ 2024-07-26  1:36 UTC (permalink / raw)
  To: Haoyang Liu, Marco Elver, Dmitry Vyukov, Jonathan Corbet
  Cc: hust-os-kernel-patches, kasan-dev, linux-doc, linux-kernel


On 2024/7/26 01:46, Haoyang Liu wrote:
> The KTSAN doc has moved to
> https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md.
> Update the url in kcsan.rst accordingly.
>
> Signed-off-by: Haoyang Liu <tttturtleruss@hust.edu.cn>

Although the old link is still accessible, I agree to use the newer one.

If this patch is merged, you need to change your Chinese version to 
catch up.

Reviewed-by: Dongliang Mu <dzm91@hust.edu.cn>

> ---
>   Documentation/dev-tools/kcsan.rst | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/dev-tools/kcsan.rst b/Documentation/dev-tools/kcsan.rst
> index 02143f060b22..d81c42d1063e 100644
> --- a/Documentation/dev-tools/kcsan.rst
> +++ b/Documentation/dev-tools/kcsan.rst
> @@ -361,7 +361,8 @@ Alternatives Considered
>   -----------------------
>   
>   An alternative data race detection approach for the kernel can be found in the
> -`Kernel Thread Sanitizer (KTSAN) <https://github.com/google/ktsan/wiki>`_.
> +`Kernel Thread Sanitizer (KTSAN)
> +<https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md>`_.
>   KTSAN is a happens-before data race detector, which explicitly establishes the
>   happens-before order between memory operations, which can then be used to
>   determine data races as defined in `Data Races`_.


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

* Re: [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN
  2024-07-26  1:36 ` Dongliang Mu
@ 2024-07-26  8:38   ` Marco Elver
  2024-07-26  8:44     ` Dongliang Mu
  2024-09-03 17:57     ` Haoyang Liu
  0 siblings, 2 replies; 9+ messages in thread
From: Marco Elver @ 2024-07-26  8:38 UTC (permalink / raw)
  To: Dongliang Mu
  Cc: Haoyang Liu, Dmitry Vyukov, Jonathan Corbet,
	hust-os-kernel-patches, kasan-dev, linux-doc, linux-kernel

On Fri, 26 Jul 2024 at 03:36, Dongliang Mu <dzm91@hust.edu.cn> wrote:
>
>
> On 2024/7/26 01:46, Haoyang Liu wrote:
> > The KTSAN doc has moved to
> > https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md.
> > Update the url in kcsan.rst accordingly.
> >
> > Signed-off-by: Haoyang Liu <tttturtleruss@hust.edu.cn>
>
> Although the old link is still accessible, I agree to use the newer one.
>
> If this patch is merged, you need to change your Chinese version to
> catch up.
>
> Reviewed-by: Dongliang Mu <dzm91@hust.edu.cn>
>
> > ---
> >   Documentation/dev-tools/kcsan.rst | 3 ++-
> >   1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/Documentation/dev-tools/kcsan.rst b/Documentation/dev-tools/kcsan.rst
> > index 02143f060b22..d81c42d1063e 100644
> > --- a/Documentation/dev-tools/kcsan.rst
> > +++ b/Documentation/dev-tools/kcsan.rst
> > @@ -361,7 +361,8 @@ Alternatives Considered
> >   -----------------------
> >
> >   An alternative data race detection approach for the kernel can be found in the
> > -`Kernel Thread Sanitizer (KTSAN) <https://github.com/google/ktsan/wiki>`_.
> > +`Kernel Thread Sanitizer (KTSAN)
> > +<https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md>`_.
> >   KTSAN is a happens-before data race detector, which explicitly establishes the
> >   happens-before order between memory operations, which can then be used to
> >   determine data races as defined in `Data Races`_.

Acked-by: Marco Elver <elver@google.com>

Do you have a tree to take your other patch ("docs/zh_CN: Add
dev-tools/kcsan Chinese translation") through? If so, I would suggest
that you ask that maintainer to take both patches, this and the
Chinese translation patch. (Otherwise, I will queue this patch to be
remembered but it'll be a while until it reaches mainline.)

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

* Re: [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN
  2024-07-26  8:38   ` Marco Elver
@ 2024-07-26  8:44     ` Dongliang Mu
  2024-09-03 17:57     ` Haoyang Liu
  1 sibling, 0 replies; 9+ messages in thread
From: Dongliang Mu @ 2024-07-26  8:44 UTC (permalink / raw)
  To: Marco Elver
  Cc: Haoyang Liu, Dmitry Vyukov, Jonathan Corbet,
	hust-os-kernel-patches, kasan-dev, linux-doc, linux-kernel


On 7/26/24 16:38, Marco Elver wrote:
> On Fri, 26 Jul 2024 at 03:36, Dongliang Mu <dzm91@hust.edu.cn> wrote:
>>
>> On 2024/7/26 01:46, Haoyang Liu wrote:
>>> The KTSAN doc has moved to
>>> https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md.
>>> Update the url in kcsan.rst accordingly.
>>>
>>> Signed-off-by: Haoyang Liu <tttturtleruss@hust.edu.cn>
>> Although the old link is still accessible, I agree to use the newer one.
>>
>> If this patch is merged, you need to change your Chinese version to
>> catch up.
>>
>> Reviewed-by: Dongliang Mu <dzm91@hust.edu.cn>
>>
>>> ---
>>>    Documentation/dev-tools/kcsan.rst | 3 ++-
>>>    1 file changed, 2 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/Documentation/dev-tools/kcsan.rst b/Documentation/dev-tools/kcsan.rst
>>> index 02143f060b22..d81c42d1063e 100644
>>> --- a/Documentation/dev-tools/kcsan.rst
>>> +++ b/Documentation/dev-tools/kcsan.rst
>>> @@ -361,7 +361,8 @@ Alternatives Considered
>>>    -----------------------
>>>
>>>    An alternative data race detection approach for the kernel can be found in the
>>> -`Kernel Thread Sanitizer (KTSAN) <https://github.com/google/ktsan/wiki>`_.
>>> +`Kernel Thread Sanitizer (KTSAN)
>>> +<https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md>`_.
>>>    KTSAN is a happens-before data race detector, which explicitly establishes the
>>>    happens-before order between memory operations, which can then be used to
>>>    determine data races as defined in `Data Races`_.
> Acked-by: Marco Elver <elver@google.com>
>
> Do you have a tree to take your other patch ("docs/zh_CN: Add
> dev-tools/kcsan Chinese translation") through? If so, I would suggest

Thanks Marco.

That patch will be merged to lwn tree maintained by Jon if all issues 
are resolved.

> that you ask that maintainer to take both patches, this and the
> Chinese translation patch. (Otherwise, I will queue this patch to be
> remembered but it'll be a while until it reaches mainline.)


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

* Re: [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN
  2024-07-26  8:38   ` Marco Elver
  2024-07-26  8:44     ` Dongliang Mu
@ 2024-09-03 17:57     ` Haoyang Liu
  2024-09-03 18:01       ` Marco Elver
  1 sibling, 1 reply; 9+ messages in thread
From: Haoyang Liu @ 2024-09-03 17:57 UTC (permalink / raw)
  To: Marco Elver, Dongliang Mu
  Cc: Dmitry Vyukov, Jonathan Corbet, hust-os-kernel-patches,
	kasan-dev, linux-doc, linux-kernel


在 2024/7/26 16:38, Marco Elver 写道:
> On Fri, 26 Jul 2024 at 03:36, Dongliang Mu <dzm91@hust.edu.cn> wrote:
>>
>> On 2024/7/26 01:46, Haoyang Liu wrote:
>>> The KTSAN doc has moved to
>>> https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md.
>>> Update the url in kcsan.rst accordingly.
>>>
>>> Signed-off-by: Haoyang Liu <tttturtleruss@hust.edu.cn>
>> Although the old link is still accessible, I agree to use the newer one.
>>
>> If this patch is merged, you need to change your Chinese version to
>> catch up.
>>
>> Reviewed-by: Dongliang Mu <dzm91@hust.edu.cn>
>>
>>> ---
>>>    Documentation/dev-tools/kcsan.rst | 3 ++-
>>>    1 file changed, 2 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/Documentation/dev-tools/kcsan.rst b/Documentation/dev-tools/kcsan.rst
>>> index 02143f060b22..d81c42d1063e 100644
>>> --- a/Documentation/dev-tools/kcsan.rst
>>> +++ b/Documentation/dev-tools/kcsan.rst
>>> @@ -361,7 +361,8 @@ Alternatives Considered
>>>    -----------------------
>>>
>>>    An alternative data race detection approach for the kernel can be found in the
>>> -`Kernel Thread Sanitizer (KTSAN) <https://github.com/google/ktsan/wiki>`_.
>>> +`Kernel Thread Sanitizer (KTSAN)
>>> +<https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md>`_.
>>>    KTSAN is a happens-before data race detector, which explicitly establishes the
>>>    happens-before order between memory operations, which can then be used to
>>>    determine data races as defined in `Data Races`_.
> Acked-by: Marco Elver <elver@google.com>
>
> Do you have a tree to take your other patch ("docs/zh_CN: Add
> dev-tools/kcsan Chinese translation") through? If so, I would suggest
> that you ask that maintainer to take both patches, this and the
> Chinese translation patch. (Otherwise, I will queue this patch to be
> remembered but it'll be a while until it reaches mainline.)

Hi, Marco.


The patch "docs/zh_CN: Add dev-tools/kcsan Chinese translation" has been 
applied, but they didn't take this one. How about you take it into your 
tree?


Thanks,

Haoyang


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

* Re: [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN
  2024-09-03 17:57     ` Haoyang Liu
@ 2024-09-03 18:01       ` Marco Elver
  2024-09-03 18:05         ` Haoyang Liu
  0 siblings, 1 reply; 9+ messages in thread
From: Marco Elver @ 2024-09-03 18:01 UTC (permalink / raw)
  To: Haoyang Liu
  Cc: Dongliang Mu, Dmitry Vyukov, Jonathan Corbet,
	hust-os-kernel-patches, kasan-dev, linux-doc, linux-kernel

On Tue, 3 Sept 2024 at 19:58, Haoyang Liu <tttturtleruss@hust.edu.cn> wrote:
>
>
> 在 2024/7/26 16:38, Marco Elver 写道:
> > On Fri, 26 Jul 2024 at 03:36, Dongliang Mu <dzm91@hust.edu.cn> wrote:
> >>
> >> On 2024/7/26 01:46, Haoyang Liu wrote:
> >>> The KTSAN doc has moved to
> >>> https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md.
> >>> Update the url in kcsan.rst accordingly.
> >>>
> >>> Signed-off-by: Haoyang Liu <tttturtleruss@hust.edu.cn>
> >> Although the old link is still accessible, I agree to use the newer one.
> >>
> >> If this patch is merged, you need to change your Chinese version to
> >> catch up.
> >>
> >> Reviewed-by: Dongliang Mu <dzm91@hust.edu.cn>
> >>
> >>> ---
> >>>    Documentation/dev-tools/kcsan.rst | 3 ++-
> >>>    1 file changed, 2 insertions(+), 1 deletion(-)
> >>>
> >>> diff --git a/Documentation/dev-tools/kcsan.rst b/Documentation/dev-tools/kcsan.rst
> >>> index 02143f060b22..d81c42d1063e 100644
> >>> --- a/Documentation/dev-tools/kcsan.rst
> >>> +++ b/Documentation/dev-tools/kcsan.rst
> >>> @@ -361,7 +361,8 @@ Alternatives Considered
> >>>    -----------------------
> >>>
> >>>    An alternative data race detection approach for the kernel can be found in the
> >>> -`Kernel Thread Sanitizer (KTSAN) <https://github.com/google/ktsan/wiki>`_.
> >>> +`Kernel Thread Sanitizer (KTSAN)
> >>> +<https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md>`_.
> >>>    KTSAN is a happens-before data race detector, which explicitly establishes the
> >>>    happens-before order between memory operations, which can then be used to
> >>>    determine data races as defined in `Data Races`_.
> > Acked-by: Marco Elver <elver@google.com>
> >
> > Do you have a tree to take your other patch ("docs/zh_CN: Add
> > dev-tools/kcsan Chinese translation") through? If so, I would suggest
> > that you ask that maintainer to take both patches, this and the
> > Chinese translation patch. (Otherwise, I will queue this patch to be
> > remembered but it'll be a while until it reaches mainline.)
>
> Hi, Marco.
>
>
> The patch "docs/zh_CN: Add dev-tools/kcsan Chinese translation" has been
> applied, but they didn't take this one. How about you take it into your
> tree?

I don't have a tree.

Since this is purely documentation changes, could Jon take it into the
Documentation tree?
Otherwise we have to ask Paul to take it into -rcu.

Thanks,
-- Marco

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

* Re: [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN
  2024-09-03 18:01       ` Marco Elver
@ 2024-09-03 18:05         ` Haoyang Liu
  2024-09-04  0:57           ` Dongliang Mu
  0 siblings, 1 reply; 9+ messages in thread
From: Haoyang Liu @ 2024-09-03 18:05 UTC (permalink / raw)
  To: Marco Elver
  Cc: Dongliang Mu, Dmitry Vyukov, Jonathan Corbet,
	hust-os-kernel-patches, kasan-dev, linux-doc, linux-kernel


在 2024/9/4 2:01, Marco Elver 写道:
> On Tue, 3 Sept 2024 at 19:58, Haoyang Liu <tttturtleruss@hust.edu.cn> wrote:
>>
>> 在 2024/7/26 16:38, Marco Elver 写道:
>>> On Fri, 26 Jul 2024 at 03:36, Dongliang Mu <dzm91@hust.edu.cn> wrote:
>>>> On 2024/7/26 01:46, Haoyang Liu wrote:
>>>>> The KTSAN doc has moved to
>>>>> https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md.
>>>>> Update the url in kcsan.rst accordingly.
>>>>>
>>>>> Signed-off-by: Haoyang Liu <tttturtleruss@hust.edu.cn>
>>>> Although the old link is still accessible, I agree to use the newer one.
>>>>
>>>> If this patch is merged, you need to change your Chinese version to
>>>> catch up.
>>>>
>>>> Reviewed-by: Dongliang Mu <dzm91@hust.edu.cn>
>>>>
>>>>> ---
>>>>>     Documentation/dev-tools/kcsan.rst | 3 ++-
>>>>>     1 file changed, 2 insertions(+), 1 deletion(-)
>>>>>
>>>>> diff --git a/Documentation/dev-tools/kcsan.rst b/Documentation/dev-tools/kcsan.rst
>>>>> index 02143f060b22..d81c42d1063e 100644
>>>>> --- a/Documentation/dev-tools/kcsan.rst
>>>>> +++ b/Documentation/dev-tools/kcsan.rst
>>>>> @@ -361,7 +361,8 @@ Alternatives Considered
>>>>>     -----------------------
>>>>>
>>>>>     An alternative data race detection approach for the kernel can be found in the
>>>>> -`Kernel Thread Sanitizer (KTSAN) <https://github.com/google/ktsan/wiki>`_.
>>>>> +`Kernel Thread Sanitizer (KTSAN)
>>>>> +<https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md>`_.
>>>>>     KTSAN is a happens-before data race detector, which explicitly establishes the
>>>>>     happens-before order between memory operations, which can then be used to
>>>>>     determine data races as defined in `Data Races`_.
>>> Acked-by: Marco Elver <elver@google.com>
>>>
>>> Do you have a tree to take your other patch ("docs/zh_CN: Add
>>> dev-tools/kcsan Chinese translation") through? If so, I would suggest
>>> that you ask that maintainer to take both patches, this and the
>>> Chinese translation patch. (Otherwise, I will queue this patch to be
>>> remembered but it'll be a while until it reaches mainline.)
>> Hi, Marco.
>>
>>
>> The patch "docs/zh_CN: Add dev-tools/kcsan Chinese translation" has been
>> applied, but they didn't take this one. How about you take it into your
>> tree?
> I don't have a tree.
>
> Since this is purely documentation changes, could Jon take it into the
> Documentation tree?
> Otherwise we have to ask Paul to take it into -rcu.
>
> Thanks,
> -- Marco

Ok, I will send this patch to Jon and see if he can take it.


Thanks,

Haoyang


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

* Re: [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN
  2024-09-03 18:05         ` Haoyang Liu
@ 2024-09-04  0:57           ` Dongliang Mu
  0 siblings, 0 replies; 9+ messages in thread
From: Dongliang Mu @ 2024-09-04  0:57 UTC (permalink / raw)
  To: Jonathan Corbet
  Cc: Marco Elver, Dongliang Mu, Dmitry Vyukov, Haoyang Liu,
	hust-os-kernel-patches, kasan-dev, linux-doc, linux-kernel

On Wed, Sep 4, 2024 at 2:05 AM Haoyang Liu <tttturtleruss@hust.edu.cn> wrote:
>
>
> 在 2024/9/4 2:01, Marco Elver 写道:
> > On Tue, 3 Sept 2024 at 19:58, Haoyang Liu <tttturtleruss@hust.edu.cn> wrote:
> >>
> >> 在 2024/7/26 16:38, Marco Elver 写道:
> >>> On Fri, 26 Jul 2024 at 03:36, Dongliang Mu <dzm91@hust.edu.cn> wrote:
> >>>> On 2024/7/26 01:46, Haoyang Liu wrote:
> >>>>> The KTSAN doc has moved to
> >>>>> https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md.
> >>>>> Update the url in kcsan.rst accordingly.
> >>>>>
> >>>>> Signed-off-by: Haoyang Liu <tttturtleruss@hust.edu.cn>
> >>>> Although the old link is still accessible, I agree to use the newer one.
> >>>>
> >>>> If this patch is merged, you need to change your Chinese version to
> >>>> catch up.
> >>>>
> >>>> Reviewed-by: Dongliang Mu <dzm91@hust.edu.cn>
> >>>>
> >>>>> ---
> >>>>>     Documentation/dev-tools/kcsan.rst | 3 ++-
> >>>>>     1 file changed, 2 insertions(+), 1 deletion(-)
> >>>>>
> >>>>> diff --git a/Documentation/dev-tools/kcsan.rst b/Documentation/dev-tools/kcsan.rst
> >>>>> index 02143f060b22..d81c42d1063e 100644
> >>>>> --- a/Documentation/dev-tools/kcsan.rst
> >>>>> +++ b/Documentation/dev-tools/kcsan.rst
> >>>>> @@ -361,7 +361,8 @@ Alternatives Considered
> >>>>>     -----------------------
> >>>>>
> >>>>>     An alternative data race detection approach for the kernel can be found in the
> >>>>> -`Kernel Thread Sanitizer (KTSAN) <https://github.com/google/ktsan/wiki>`_.
> >>>>> +`Kernel Thread Sanitizer (KTSAN)
> >>>>> +<https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md>`_.
> >>>>>     KTSAN is a happens-before data race detector, which explicitly establishes the
> >>>>>     happens-before order between memory operations, which can then be used to
> >>>>>     determine data races as defined in `Data Races`_.
> >>> Acked-by: Marco Elver <elver@google.com>
> >>>
> >>> Do you have a tree to take your other patch ("docs/zh_CN: Add
> >>> dev-tools/kcsan Chinese translation") through? If so, I would suggest
> >>> that you ask that maintainer to take both patches, this and the
> >>> Chinese translation patch. (Otherwise, I will queue this patch to be
> >>> remembered but it'll be a while until it reaches mainline.)
> >> Hi, Marco.
> >>
> >>
> >> The patch "docs/zh_CN: Add dev-tools/kcsan Chinese translation" has been
> >> applied, but they didn't take this one. How about you take it into your
> >> tree?
> > I don't have a tree.
> >
> > Since this is purely documentation changes, could Jon take it into the
> > Documentation tree?
> > Otherwise we have to ask Paul to take it into -rcu.
> >
> > Thanks,
> > -- Marco
>
> Ok, I will send this patch to Jon and see if he can take it.

Hi Jon,

Could you please take this patch to lwn tree maintained by you?

P.S., it seems Jon is in the cc list previously.

>
>
> Thanks,
>
> Haoyang
>
>

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

* Re: [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN
  2024-07-25 17:46 [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN Haoyang Liu
  2024-07-26  1:36 ` Dongliang Mu
@ 2024-09-04 14:04 ` Jonathan Corbet
  1 sibling, 0 replies; 9+ messages in thread
From: Jonathan Corbet @ 2024-09-04 14:04 UTC (permalink / raw)
  To: Haoyang Liu, Marco Elver, Dmitry Vyukov
  Cc: hust-os-kernel-patches, Haoyang Liu, kasan-dev, linux-doc, linux-kernel

Haoyang Liu <tttturtleruss@hust.edu.cn> writes:

> The KTSAN doc has moved to
> https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md.
> Update the url in kcsan.rst accordingly.
>
> Signed-off-by: Haoyang Liu <tttturtleruss@hust.edu.cn>
> ---
>  Documentation/dev-tools/kcsan.rst | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/dev-tools/kcsan.rst b/Documentation/dev-tools/kcsan.rst
> index 02143f060b22..d81c42d1063e 100644
> --- a/Documentation/dev-tools/kcsan.rst
> +++ b/Documentation/dev-tools/kcsan.rst
> @@ -361,7 +361,8 @@ Alternatives Considered
>  -----------------------
>  
>  An alternative data race detection approach for the kernel can be found in the
> -`Kernel Thread Sanitizer (KTSAN) <https://github.com/google/ktsan/wiki>`_.
> +`Kernel Thread Sanitizer (KTSAN)
> +<https://github.com/google/kernel-sanitizers/blob/master/KTSAN.md>`_.
>  KTSAN is a happens-before data race detector, which explicitly establishes the

Applied, thanks.

jon

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

end of thread, other threads:[~2024-09-04 14:05 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-25 17:46 [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN Haoyang Liu
2024-07-26  1:36 ` Dongliang Mu
2024-07-26  8:38   ` Marco Elver
2024-07-26  8:44     ` Dongliang Mu
2024-09-03 17:57     ` Haoyang Liu
2024-09-03 18:01       ` Marco Elver
2024-09-03 18:05         ` Haoyang Liu
2024-09-04  0:57           ` Dongliang Mu
2024-09-04 14:04 ` Jonathan Corbet

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

all inboxes | Powered by JetHome®