diff options
| author | Herbert Xu <[email protected]> | 2025-03-17 09:02:28 +0000 |
|---|---|---|
| committer | Andrew Morton <[email protected]> | 2025-07-10 05:57:54 +0000 |
| commit | 1857fcc847443b0238cb64584b43d8c3a9049a0a (patch) | |
| tree | facc98106e54bfaaa4c769772f912aab58255c17 /lib/raid6/algos.c | |
| parent | scripts: gdb: move MNT_* constants to gdb-parsed (diff) | |
| download | kernel-1857fcc847443b0238cb64584b43d8c3a9049a0a.tar.gz kernel-1857fcc847443b0238cb64584b43d8c3a9049a0a.zip | |
lib/raid6: replace custom zero page with ZERO_PAGE
Use the system-wide zero page instead of a custom zero page.
[[email protected]: update lib/raid6/recov_rvv.c, per Klara]
Link: https://lkml.kernel.org/r/[email protected]
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Herbert Xu <[email protected]>
Cc: Song Liu <[email protected]>
Cc: Yu Kuai <[email protected]>
Cc: Klara Modin <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Diffstat (limited to 'lib/raid6/algos.c')
| -rw-r--r-- | lib/raid6/algos.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/raid6/algos.c b/lib/raid6/algos.c index 75ce3e134b7c..799e0e5eac26 100644 --- a/lib/raid6/algos.c +++ b/lib/raid6/algos.c @@ -18,9 +18,6 @@ #else #include <linux/module.h> #include <linux/gfp.h> -/* In .bss so it's zeroed */ -const char raid6_empty_zero_page[PAGE_SIZE] __attribute__((aligned(256))); -EXPORT_SYMBOL(raid6_empty_zero_page); #endif struct raid6_calls raid6_call; |
