[<prev] [next>] [day] [month] [year] [list]
Message-Id:
<20250419-checkpatch-rust-private-item-comment-v1-0-89b2ccd32fd9@arnaud-lcm.com>
Date: Sat, 19 Apr 2025 21:20:01 +0200
From: Arnaud Lecomte <contact@...aud-lcm.com>
To: Andy Whitcroft <apw@...onical.com>, Joe Perches <joe@...ches.com>,
Dwaipayan Ray <dwaipayanray1@...il.com>,
Lukas Bulwahn <lukas.bulwahn@...il.com>, Miguel Ojeda <ojeda@...nel.org>,
Alex Gaynor <alex.gaynor@...il.com>, Boqun Feng <boqun.feng@...il.com>,
Gary Guo <gary@...yguo.net>,
Björn Roy Baron <bjorn3_gh@...tonmail.com>,
Benno Lossin <benno.lossin@...ton.me>,
Andreas Hindborg <a.hindborg@...nel.org>, Alice Ryhl <aliceryhl@...gle.com>,
Trevor Gross <tmgross@...ch.edu>, Danilo Krummrich <dakr@...nel.org>,
Nathan Chancellor <nathan@...nel.org>,
Nick Desaulniers <nick.desaulniers+lkml@...il.com>,
Bill Wendling <morbo@...gle.com>, Justin Stitt <justinstitt@...gle.com>
Cc: linux-kernel@...r.kernel.org, rust-for-linux@...r.kernel.org,
llvm@...ts.linux.dev, contact@...aud-lcm.com, skhan@...uxfoundation.org
Subject: [PATCH 0/2] checkpatch.pl: add warning for // comments on private
Rust items
Hi,
Background
----------
The Rust-for-Linux project currently lacks enforcement of documentation for private Rust items,
as highlighted in https://github.com/Rust-for-Linux/linux/issues/1157.
While rustc already lints missing documentation for public items, private items remain unchecked.
This patch series aims to close that gap by ensuring proper documentation practices
for private Rust items in the kernel.
As underlined in this issue:
https://github.com/Rust-for-Linux/linux/issues/1157, the purposes of
this patch serie is to ensure the proper documentation of private rust
items. Public items missing documentation are already linted by rustc.
The actual solution comes in several parts
------------------------------------------
1) Patch 1 : Implements detection logic to emit warnings for improperly
documented private Rust items (e.g., // comments instead of ///).
2) Patch 2 : Adds an auto-fix mechanism via the --fix option to help
developers correct documentation issues.
Results
--------------------
The following implementation has been tested against this input file:
// SPDX-License-Identifier: GPL-2.0
// Simple comment - should not trigger
// Returns a reference to the underlying [`cpufreq::Table`]. - should trigger
fn table(&self) -> &cpufreq::Table {
// SAFETY: The `ptr` is guaranteed by the C code to be valid. - should not trigger
unsafe { cpufreq::Table::from_raw(self.ptr) }
}
// Improper doc comment for a private function. - should trigger
fn test() -> u32 {
42
}
/// Proper doc comment for a private function. - should not trigger
fn proper_doc() -> u32 {
42
}
// TODO: implement more logic - should not trigger
fn todo_marker() -> bool {
true
}
// Just a regular comment not followed by code - should not trigger
pub fn public_function() {
// Public function - should not trigger
}
// Test - should trigger
struct Point2D {
pub x: f32,
pub y: f32
}
// Test - should not trigger
pub struct Point2D {
pub x: f32,
pub y: f32
}
// Test - should not trigger
pub struct Point2D {
pub x: f32,
pub y: f32
}
mod test_module {
// Module inner comment - should not trigger
}
// Comment before macro - should not trigger
macro_rules! my_macro {
// Comment inside macro - should not trigger
() => {};
}
// Comment before unsafe block - should not trigger
unsafe {
// Comment inside unsafe block - should not trigger
let x = 5;
}
// Comment with unsafe word - should trigger
fn with_unsafe_keyword() {
println!("test");
}
// Comment with code example: - should trigger
// let x = 5; - should trigger
fn with_code_example() {
println!("test");
}
// NOTE: important consideration - should not trigger
fn note_marker() -> bool {
true
}
// Comment with code example: - should trigger
/// let x = 5; - should not trigger
fn with_mixed_comments() {
println!("test");
}
which led to this output:
WARNING: Consider using `///` for private item documentation (line 5)
+// Returns a reference to the underlying [`cpufreq::Table`]. - should trigger
WARNING: Consider using `///` for private item documentation (line 12)
+// Improper doc comment for a private function. - should trigger
WARNING: Consider using `///` for private item documentation (line 33)
+// Test - should trigger
WARNING: Consider using `///` for private item documentation (line 74)
+// Comment with unsafe word - should trigger
WARNING: Consider using `///` for private item documentation (line 79)
+// Comment with code example: - should trigger
WARNING: Consider using `///` for private item documentation (line 80)
+// let x = 5; - should trigger
WARNING: Consider using `///` for private item documentation (line 91)
+// Comment with code example: - should trigger
total: 0 errors, 7 warnings, 95 lines checked
NOTE: For some of the reported defects, checkpatch may be able to
mechanically convert to the typical style using --fix or --fix-inplace.
test.rs has style problems, please review.
NOTE: If any of the errors are false positives, please report
them to the maintainer, see CHECKPATCH in MAINTAINERS.
Link: https://github.com/Rust-for-Linux/linux/issues/1157
Suggested-by: Miguel Ojeda <ojeda@...nel.org>
Signed-off-by: Arnaud Lecomte <contact@...aud-lcm.com>
---
Arnaud Lecomte (2):
checkpatch.pl: warn about // comments on private Rust items
checkpatch.pl: add `--fix` support for `//` comments on private Rust items
scripts/checkpatch.pl | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
---
base-commit: 250b341caf5e0e099dcf789be652178ca57a68cd
change-id: 20250419-checkpatch-rust-private-item-comment-bb3a5281e5da
Best regards,
--
Arnaud Lecomte <contact@...aud-lcm.com>
Powered by blists - more mailing lists