From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 901B81CCEFC; Wed, 4 Sep 2024 14:05:06 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.79.88.28 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725458710; cv=none; b=mYDJJrTf4uB8OVG2TCjtFCeRX8fmNuNW+RnsLrvjY1RFR4QJxzSRaOh58/QCBOxzlXdAdvgCeejEMumo2P1vkXBbNyXc+kaHWOwB8tGPWkhQScoNFGe7Cvm7nKaSAe3h2EnxcVWOLxjHc2SYLtejbxHyvWVb6sBlbUTH+cm9hPk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725458710; c=relaxed/simple; bh=aeuvU0uTn4EHsdlBsgLqrVDqKnND00xcE/ZmfdY+tSU=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=N1Slp9Bd1MsoRFcOwIlIImNM4MhkfnfUlSGvDbI+FCGs/pBt0dSfcvq2RYJ2bv35AHf+3WT8bHRzbtwWLiIEmEDK53UHqY4M79ebxlj8ydkiQXLxhm88cxegHwUr5oYdaHfwn/6DMDRmowN9lAhLjcZH/xc0q/nT3dfPlWgn1fQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net; spf=pass smtp.mailfrom=lwn.net; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b=QSXeqYqW; arc=none smtp.client-ip=45.79.88.28 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lwn.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b="QSXeqYqW" DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 724B642B1D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1725458700; bh=bPJsyN4OVHJPkKS+55oOZsTfbS95iFLn1DvzX0Lx3OY=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=QSXeqYqW/dIbK+uYzWOEt9TVLyNtXYWgZr/drwtvj+5/a5RfAvVjo5Eq84IIRzn1y WyOKH85f7YmP/BdMRINSAXrxkB0LgOJgoOm8SNg1W+gGQLLXkkNslk6wJ1DrSUY4N+ S2r6NkfTlTqXdwUt5905CMKDgIbt83+QEXfRK3kuCGLykx8FdE4vrtVpnST8el4EYG dwlsmtrF6DGD5PN+G6D/LaSzHZ2SOrPvL0JJ2iMLNVFS3QF1E32EISiMeHokWI+5a9 6BpsCktNneCvf/qKGjDDUqzoosLG5SPpG7CgRv+YMaigQHTz9Gi0KbIAQXDMHTwqxF nTAKkOzDyHPqg== Received: from localhost (unknown [IPv6:2601:280:5e00:625::1fe]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 724B642B1D; Wed, 4 Sep 2024 14:05:00 +0000 (UTC) From: Jonathan Corbet To: Haoyang Liu , Marco Elver , Dmitry Vyukov Cc: hust-os-kernel-patches@googlegroups.com, Haoyang Liu , kasan-dev@googlegroups.com, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] docs: update dev-tools/kcsan.rst url about KTSAN In-Reply-To: <20240725174632.23803-1-tttturtleruss@hust.edu.cn> References: <20240725174632.23803-1-tttturtleruss@hust.edu.cn> Date: Wed, 04 Sep 2024 08:04:59 -0600 Message-ID: <87cyljms50.fsf@trenco.lwn.net> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain Haoyang Liu 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 > --- > 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) `_. > +`Kernel Thread Sanitizer (KTSAN) > +`_. > KTSAN is a happens-before data race detector, which explicitly establishes the Applied, thanks. jon