mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-23 13:17:34 -04:00
Pull s390 updates from Alexander Gordeev: - Use CIO device online variable instead of the internal FSM state to determine device availability during purge operations - Remove extra check of task_stack_page() because try_get_task_stack() already takes care of that when reading /proc/<pid>/wchan - Allow user-space to use the new SCLP action qualifier 4 for to provide NVMe SMART log data to the platform. - Send AP CHANGE uevents on successful bind and successful association to notify user-space about SE operations on AP queue devices - Add an s390dbf kernel parameter to configure debug log levels and area sizes during early boot - On arm64 the empty zero page is going to be mapped read-only. Do the same for s390 with an explicit set_memory_ro() call - Improve s390-specific bcr_serialize() and cpu_relax() implementations - Remove all unused variables to avoid allmodconfig W=1 build fails with latest clang-23 - Cleanup default Kconfig values for s390 selftests - Add a s390-tod trace clock to allow comparing trace timestamps between different systems or virtual machines on s390 - Remove the s390 implementation of strlcat() in favor of the generic variant - Make consistent the calling order between page_table_check_pte_clear() and secure page conversion across all code paths - Rearrange some fields within AP and zcrypt structs to reduce memory consumption and unused holes - Shorten GR_NUM and VX_NUM macros and move them to a separate header - Replace __get_free_page() with kmalloc() in few sources - Introduce an infrastructure for more efficient this_cpu operations. Eliminate conditional branches when PREEMPT_NONE is removed - Enable Rust support - Use z10 as minimum architecture level, similar to the boot code, to enforce a defined architecture level set - Improve and convert various mem*() helper functions to C. For that add .noinstr.text section to avoid orphaned warnings from the linker - Fix the function pointer type in __ret_from_fork() to correct the indirect call to match kernel thread return type of int - Revert support for DCACHE_WORD_ACCESS to avoid an endless exception loop on read from donated Ultravisor pages at unaligned addresses * tag 's390-7.2-1' of gitolite.kernel.org:pub/scm/linux/kernel/git/s390/linux: (52 commits) s390: Revert support for DCACHE_WORD_ACCESS s390/process: Fix kernel thread function pointer type s390/tishift: Convert __ashlti3(), __ashrti3(), __lshrti3() to C s390/memmove: Optimize backward copy case s390/string: Convert memset(16|32|64)() to C s390/string: Convert memcpy() to C s390/string: Convert memset() to C s390/string: Convert memmove() to C s390/string: Add -ffreestanding compile option to string.o s390: Add .noinstr.text to boot and purgatory linker scripts s390/purgatory: Enforce z10 minimum architecture level s390: Enable Rust support s390/cmpxchg: Fix KASAN stack-out-of-bounds in atomic helpers rust: helpers: Add memchr wrapper for string operations rust/bindgen_parameters: Mark s390 types as opaque to prevent repr conflicts s390/jump_label: Implement ARCH_STATIC_BRANCH_JUMP_ASM and ARCH_STATIC_BRANCH_ASM macros s390/bug: Provide ARCH_WARN_ASM for Rust WARN/BUG support s390/ap: Fix locking issue in SE bind and associate sysfs functions s390/percpu: Provide arch_this_cpu_write() implementation s390/percpu: Provide arch_this_cpu_read() implementation ...
142 lines
3.6 KiB
C
142 lines
3.6 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_S390_BUG_H
|
|
#define _ASM_S390_BUG_H
|
|
|
|
#include <linux/compiler.h>
|
|
#include <linux/const.h>
|
|
#include <linux/stringify.h>
|
|
|
|
#define MONCODE_BUG _AC(0, U)
|
|
#define MONCODE_BUG_ARG _AC(1, U)
|
|
|
|
#ifndef __ASSEMBLER__
|
|
#if defined(CONFIG_BUG) && defined(CONFIG_CC_HAS_ASM_IMMEDIATE_STRINGS)
|
|
|
|
#ifdef CONFIG_DEBUG_BUGVERBOSE
|
|
#define __BUG_ENTRY_VERBOSE(file, line) \
|
|
" .long " file " - . # bug_entry::file\n" \
|
|
" .short " line " # bug_entry::line\n"
|
|
#else
|
|
#define __BUG_ENTRY_VERBOSE(file, line)
|
|
#endif
|
|
|
|
#ifdef CONFIG_DEBUG_BUGVERBOSE_DETAILED
|
|
#define WARN_CONDITION_STR(cond_str) cond_str
|
|
#else
|
|
#define WARN_CONDITION_STR(cond_str) ""
|
|
#endif
|
|
|
|
#define __BUG_ENTRY(format, file, line, flags, size) \
|
|
" .section __bug_table,\"aw\"\n" \
|
|
"1: .long 0b - . # bug_entry::bug_addr\n"\
|
|
" .long " format " - . # bug_entry::format\n" \
|
|
__BUG_ENTRY_VERBOSE(file, line) \
|
|
" .short "flags" # bug_entry::flags\n" \
|
|
" .org 1b+"size"\n" \
|
|
" .previous"
|
|
|
|
#define __BUG_ASM(cond_str, flags) \
|
|
do { \
|
|
asm_inline volatile("\n" \
|
|
"0: mc %[monc](%%r0),0\n" \
|
|
__BUG_ENTRY("%[frmt]", "%[file]", "%[line]", \
|
|
"%[flgs]", "%[size]") \
|
|
: \
|
|
: [monc] "i" (MONCODE_BUG), \
|
|
[frmt] "i" (WARN_CONDITION_STR(cond_str)), \
|
|
[file] "i" (__FILE__), \
|
|
[line] "i" (__LINE__), \
|
|
[flgs] "i" (flags), \
|
|
[size] "i" (sizeof(struct bug_entry))); \
|
|
} while (0)
|
|
|
|
#define BUG() \
|
|
do { \
|
|
__BUG_ASM("", 0); \
|
|
unreachable(); \
|
|
} while (0)
|
|
|
|
#define __WARN_FLAGS(cond_str, flags) \
|
|
do { \
|
|
__BUG_ASM(cond_str, BUGFLAG_WARNING | (flags)); \
|
|
} while (0)
|
|
|
|
#define __WARN_bug_entry(flags, format) \
|
|
({ \
|
|
struct bug_entry *bug; \
|
|
\
|
|
asm_inline volatile("\n" \
|
|
"0: larl %[bug],1f\n" \
|
|
__BUG_ENTRY("%[frmt]", "%[file]", "%[line]", \
|
|
"%[flgs]", "%[size]") \
|
|
: [bug] "=d" (bug) \
|
|
: [frmt] "i" (format), \
|
|
[file] "i" (__FILE__), \
|
|
[line] "i" (__LINE__), \
|
|
[flgs] "i" (flags), \
|
|
[size] "i" (sizeof(struct bug_entry))); \
|
|
bug; \
|
|
})
|
|
|
|
/*
|
|
* Variable Argument List (va_list) as defined in ELF Application
|
|
* Binary Interface s390x Supplement documentation.
|
|
*/
|
|
struct arch_va_list {
|
|
long __gpr;
|
|
long __fpr;
|
|
void *__overflow_arg_area;
|
|
void *__reg_save_area;
|
|
};
|
|
|
|
struct bug_entry;
|
|
struct pt_regs;
|
|
|
|
void *__warn_args(struct arch_va_list *args, struct pt_regs *regs);
|
|
void __WARN_trap(struct bug_entry *bug, ...);
|
|
|
|
#define __WARN_print_arg(flags, format, arg...) \
|
|
do { \
|
|
int __flags = (flags) | BUGFLAG_WARNING | BUGFLAG_ARGS; \
|
|
\
|
|
__WARN_trap(__WARN_bug_entry(__flags, format), ## arg); \
|
|
/* prevent tail-call optimization */ \
|
|
asm(""); \
|
|
} while (0)
|
|
|
|
#define __WARN_printf(taint, fmt, arg...) \
|
|
__WARN_print_arg(BUGFLAG_TAINT(taint), fmt, ## arg)
|
|
|
|
#define WARN_ONCE(cond, format, arg...) \
|
|
({ \
|
|
int __ret_warn_on = !!(cond); \
|
|
\
|
|
if (unlikely(__ret_warn_on)) { \
|
|
__WARN_print_arg(BUGFLAG_ONCE|BUGFLAG_TAINT(TAINT_WARN),\
|
|
format, ## arg); \
|
|
} \
|
|
__ret_warn_on; \
|
|
})
|
|
|
|
#define HAVE_ARCH_BUG
|
|
#define HAVE_ARCH_BUG_FORMAT
|
|
#define HAVE_ARCH_BUG_FORMAT_ARGS
|
|
|
|
#define ARCH_WARN_ASM(file, line, flags, size) \
|
|
".section .rodata.str,\"aMS\",@progbits,1\n" \
|
|
"9:\n" \
|
|
".asciz \"\"\n" /* Empty string for compatibility */ \
|
|
".previous\n" \
|
|
"0:\n" \
|
|
__stringify(mc 0(%r0),0) "\n" \
|
|
__BUG_ENTRY("9b", file, line, flags, size)
|
|
|
|
#define ARCH_WARN_REACHABLE
|
|
|
|
#endif /* CONFIG_BUG && CONFIG_CC_HAS_ASM_IMMEDIATE_STRINGS */
|
|
#endif /* __ASSEMBLER__ */
|
|
|
|
#include <asm-generic/bug.h>
|
|
|
|
#endif /* _ASM_S390_BUG_H */
|