[PATCH v3 07/22] checkpatch: Warn on page table access without accessors
Joe Perches
joe at perches.com
Wed Nov 12 18:21:01 PST 2025
On Wed, 2025-11-12 at 17:45 -0800, Samuel Holland wrote:
> Architectures may have special rules for accessing the hardware page
> tables (for example, atomicity/ordering requirements), so the generic MM
> code provides the pXXp_get() and set_pXX() hooks for architectures to
> implement. These accessor functions are often omitted where a raw
> pointer dereference is believed to be safe (i.e. race-free). However,
> RISC-V needs to use these hooks to rewrite the page table values at
> read/write time on some platforms. A raw pointer dereference will no
> longer produce the correct value on those platforms, so the generic code
> must always use the accessor functions.
[]
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
[]
> @@ -7721,6 +7721,13 @@ sub process {
> ERROR("MISSING_SENTINEL", "missing sentinel in ID array\n" . "$here\n$stat\n");
> }
> }
> +
> +# check for raw dereferences of hardware page table pointers
> + if ($realfile !~ m@^arch/@ &&
> + $line =~ /(?<!pte_t |p[mu4g]d_t |izeof\()\*\(?(vmf(\.|->))?(pte|p[mu4g]d)p?\b/) {
> + WARN("PAGE_TABLE_ACCESSORS",
> + "Use $3p_get()/set_$3() instead of dereferencing page table pointers\n" . $herecurr);
> + }
> }
Seems like a lot of matches
$ git grep -P '(?<!pte_t |p[mu4g]d_t |izeof\()\*\(?(vmf(\.|->))?(pte|p[mu4g]d)p?\b' | \
grep -v '^arch/' | wc -l
766
Is this really appropriate?
trivia:
izeof is really odd looking. I'd prefer sizeof.
More information about the linux-riscv
mailing list