diff mbox series

[RFC,v2,21/21] riscv: mm: Update EXEC_PAGESIZE for 64K Page

Message ID 20241205103729.14798-22-luxu.kernel@bytedance.com (mailing list archive)
State New
Headers show
Series riscv: Introduce 64K base page | expand

Checks

Context Check Description
conchuod/vmtest-for-next-PR fail PR summary
conchuod/patch-21-test-1 success .github/scripts/patches/tests/build_rv32_defconfig.sh took 210.96s
conchuod/patch-21-test-2 fail .github/scripts/patches/tests/build_rv64_clang_allmodconfig.sh took 1478.26s
conchuod/patch-21-test-3 fail .github/scripts/patches/tests/build_rv64_gcc_allmodconfig.sh took 1677.82s
conchuod/patch-21-test-4 success .github/scripts/patches/tests/build_rv64_nommu_k210_defconfig.sh took 79.55s
conchuod/patch-21-test-5 success .github/scripts/patches/tests/build_rv64_nommu_virt_defconfig.sh took 81.46s
conchuod/patch-21-test-6 warning .github/scripts/patches/tests/checkpatch.sh took 0.72s
conchuod/patch-21-test-7 success .github/scripts/patches/tests/dtb_warn_rv64.sh took 47.99s
conchuod/patch-21-test-8 success .github/scripts/patches/tests/header_inline.sh took 0.01s
conchuod/patch-21-test-9 success .github/scripts/patches/tests/kdoc.sh took 0.65s
conchuod/patch-21-test-10 success .github/scripts/patches/tests/module_param.sh took 0.01s
conchuod/patch-21-test-11 success .github/scripts/patches/tests/verify_fixes.sh took 0.00s
conchuod/patch-21-test-12 success .github/scripts/patches/tests/verify_signedoff.sh took 0.04s
conchuod/vmtest-fixes-PR fail merge-conflict

Commit Message

Xu Lu Dec. 5, 2024, 10:37 a.m. UTC
Signed-off-by: Xu Lu <luxu.kernel@bytedance.com>
---
 arch/riscv/include/uapi/asm/param.h | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 arch/riscv/include/uapi/asm/param.h
diff mbox series

Patch

diff --git a/arch/riscv/include/uapi/asm/param.h b/arch/riscv/include/uapi/asm/param.h
new file mode 100644
index 000000000000..1221e570a077
--- /dev/null
+++ b/arch/riscv/include/uapi/asm/param.h
@@ -0,0 +1,24 @@ 
+/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
+/*
+ * Copyright (C) 2024 RISCV Ltd.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+#ifndef __ASM_PARAM_H
+#define __ASM_PARAM_H
+
+#define EXEC_PAGESIZE	65536
+
+#include <asm-generic/param.h>
+
+#endif