diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-10-23 06:14:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-10-23 06:14:47 -0400 |
commit | e2b623fbe6a34bce1332584212ae101ebc2508f5 (patch) | |
tree | eb07421d683c90cbed7326cdcc778cea9a08d48d /include/linux/compiler-gcc.h | |
parent | 70408a9987d1ffac006e21b965f0c30dd22b0af2 (diff) | |
parent | f822ad2c2c03af85a531c5174136b6d5b1abc566 (diff) |
Merge tag 's390-4.20-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
Pull s390 updates from Martin Schwidefsky:
- Improved access control for the zcrypt driver, multiple device nodes
can now be created with different access control lists
- Extend the pkey API to provide random protected keys, this is useful
for encrypted swap device with ephemeral protected keys
- Add support for virtually mapped kernel stacks
- Rework the early boot code, this moves the memory detection into the
boot code that runs prior to decompression.
- Add KASAN support
- Bug fixes and cleanups
* tag 's390-4.20-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux: (83 commits)
s390/pkey: move pckmo subfunction available checks away from module init
s390/kasan: support preemptible kernel build
s390/pkey: Load pkey kernel module automatically
s390/perf: Return error when debug_register fails
s390/sthyi: Fix machine name validity indication
s390/zcrypt: fix broken zcrypt_send_cprb in-kernel api function
s390/vmalloc: fix VMALLOC_START calculation
s390/mem_detect: add missing include
s390/dumpstack: print psw mask and address again
s390/crypto: Enhance paes cipher to accept variable length key material
s390/pkey: Introduce new API for transforming key blobs
s390/pkey: Introduce new API for random protected key verification
s390/pkey: Add sysfs attributes to emit secure key blobs
s390/pkey: Add sysfs attributes to emit protected key blobs
s390/pkey: Define protected key blob format
s390/pkey: Introduce new API for random protected key generation
s390/zcrypt: add ap_adapter_mask sysfs attribute
s390/zcrypt: provide apfs failure code on type 86 error reply
s390/zcrypt: zcrypt device driver cleanup
s390/kasan: add support for mem= kernel parameter
...
Diffstat (limited to 'include/linux/compiler-gcc.h')
-rw-r--r-- | include/linux/compiler-gcc.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/compiler-gcc.h b/include/linux/compiler-gcc.h index 4d36b27214fd..90ddfefb6c2b 100644 --- a/include/linux/compiler-gcc.h +++ b/include/linux/compiler-gcc.h | |||
@@ -194,6 +194,12 @@ | |||
194 | * Conflicts with inlining: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67368 | 194 | * Conflicts with inlining: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67368 |
195 | */ | 195 | */ |
196 | #define __no_sanitize_address __attribute__((no_sanitize_address)) | 196 | #define __no_sanitize_address __attribute__((no_sanitize_address)) |
197 | #ifdef CONFIG_KASAN | ||
198 | #define __no_sanitize_address_or_inline \ | ||
199 | __no_sanitize_address __maybe_unused notrace | ||
200 | #else | ||
201 | #define __no_sanitize_address_or_inline inline | ||
202 | #endif | ||
197 | #endif | 203 | #endif |
198 | 204 | ||
199 | #if GCC_VERSION >= 50100 | 205 | #if GCC_VERSION >= 50100 |
@@ -211,6 +217,7 @@ | |||
211 | 217 | ||
212 | #if !defined(__no_sanitize_address) | 218 | #if !defined(__no_sanitize_address) |
213 | #define __no_sanitize_address | 219 | #define __no_sanitize_address |
220 | #define __no_sanitize_address_or_inline inline | ||
214 | #endif | 221 | #endif |
215 | 222 | ||
216 | /* | 223 | /* |