diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2026-02-09 20:17:03 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2026-02-09 20:17:03 -0800 |
| commit | c48953d81972bfe16a9e3551883992aa6efe541a (patch) | |
| tree | f59a8a296e4b5e6239267465a46c83bfbbf22346 /drivers/s390/crypto | |
| parent | 861ea34546dcde8600878d5e7f746795f22fc818 (diff) | |
| parent | 5ae76830c76cf38708399245606e4e07a33fe51c (diff) | |
Merge tag 's390-7.0-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
Pull s390 updates from Heiko Carstens:
- Drop support for outdated 3590/3592 and 3480 tape devices, and limit
support to virtualized 3490E types devices
- Implement exception based WARN() and WARN_ONCE() similar to x86
- Slightly optimize preempt primitives like __preempt_count_add() and
__preempt_count_dec_and_test()
- A couple of small fixes and improvements
* tag 's390-7.0-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux: (35 commits)
s390/tape: Consolidate tape config options and modules
s390/cio: Fix device lifecycle handling in css_alloc_subchannel()
s390/tape: Rename tape_34xx.c to tape_3490.c
s390/tape: Cleanup sense data analysis and error handling
s390/tape: Remove 3480 tape device type
s390/tape: Remove unused command definitions
s390/tape: Remove special block id handling
s390/tape: Remove tape load display support
s390/tape: Remove support for 3590/3592 models
s390/kexec: Emit an error message when cmdline is too long
s390/configs: Enable BLK_DEV_NULL_BLK as module
s390: Document s390 stackprotector support
s390/perf: Disable register readout on sampling events
s390/Kconfig: Define non-zero ILLEGAL_POINTER_VALUE
s390/bug: Prevent tail-call optimization
s390/bug: Skip __WARN_trap() in call traces
s390/bug: Implement WARN_ONCE()
s390/bug: Implement __WARN_printf()
s390/traps: Copy monitor code to pt_regs
s390/bug: Introduce and use monitor code macro
...
Diffstat (limited to 'drivers/s390/crypto')
| -rw-r--r-- | drivers/s390/crypto/ap_bus.c | 12 | ||||
| -rw-r--r-- | drivers/s390/crypto/zcrypt_api.c | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/drivers/s390/crypto/ap_bus.c b/drivers/s390/crypto/ap_bus.c index a445494fd2be..19cd27e9a3f3 100644 --- a/drivers/s390/crypto/ap_bus.c +++ b/drivers/s390/crypto/ap_bus.c @@ -52,24 +52,24 @@ MODULE_LICENSE("GPL"); int ap_domain_index = -1; /* Adjunct Processor Domain Index */ static DEFINE_SPINLOCK(ap_domain_lock); -module_param_named(domain, ap_domain_index, int, 0440); +module_param_named(domain, ap_domain_index, int, 0444); MODULE_PARM_DESC(domain, "domain index for ap devices"); EXPORT_SYMBOL(ap_domain_index); static int ap_thread_flag; -module_param_named(poll_thread, ap_thread_flag, int, 0440); +module_param_named(poll_thread, ap_thread_flag, int, 0444); MODULE_PARM_DESC(poll_thread, "Turn on/off poll thread, default is 0 (off)."); static char *apm_str; -module_param_named(apmask, apm_str, charp, 0440); +module_param_named(apmask, apm_str, charp, 0444); MODULE_PARM_DESC(apmask, "AP bus adapter mask."); static char *aqm_str; -module_param_named(aqmask, aqm_str, charp, 0440); +module_param_named(aqmask, aqm_str, charp, 0444); MODULE_PARM_DESC(aqmask, "AP bus domain mask."); static int ap_useirq = 1; -module_param_named(useirq, ap_useirq, int, 0440); +module_param_named(useirq, ap_useirq, int, 0444); MODULE_PARM_DESC(useirq, "Use interrupt if available, default is 1 (on)."); atomic_t ap_max_msg_size = ATOMIC_INIT(AP_DEFAULT_MAX_MSG_SIZE); @@ -130,7 +130,7 @@ debug_info_t *ap_dbf_info; */ static mempool_t *ap_msg_pool; static unsigned int ap_msg_pool_min_items = 8; -module_param_named(msgpool_min_items, ap_msg_pool_min_items, uint, 0440); +module_param_named(msgpool_min_items, ap_msg_pool_min_items, uint, 0400); MODULE_PARM_DESC(msgpool_min_items, "AP message pool minimal items"); /* diff --git a/drivers/s390/crypto/zcrypt_api.c b/drivers/s390/crypto/zcrypt_api.c index 7a3b99f065f2..c796773fbce8 100644 --- a/drivers/s390/crypto/zcrypt_api.c +++ b/drivers/s390/crypto/zcrypt_api.c @@ -50,7 +50,7 @@ MODULE_DESCRIPTION("Cryptographic Coprocessor interface, " \ MODULE_LICENSE("GPL"); unsigned int zcrypt_mempool_threshold = 5; -module_param_named(mempool_threshold, zcrypt_mempool_threshold, uint, 0440); +module_param_named(mempool_threshold, zcrypt_mempool_threshold, uint, 0400); MODULE_PARM_DESC(mempool_threshold, "CCA and EP11 request/reply mempool minimal items (min: 1)"); /* |
