diff options
| -rw-r--r-- | drivers/s390/crypto/z90crypt.h | 9 | ||||
| -rw-r--r-- | include/asm-s390/uaccess.h | 21 |
2 files changed, 2 insertions, 28 deletions
diff --git a/drivers/s390/crypto/z90crypt.h b/drivers/s390/crypto/z90crypt.h index 82a1d97001d7..0a3bb5a10dd4 100644 --- a/drivers/s390/crypto/z90crypt.h +++ b/drivers/s390/crypto/z90crypt.h | |||
| @@ -36,15 +36,6 @@ | |||
| 36 | #define z90crypt_VARIANT 2 // 2 = added PCIXCC MCL3 and CEX2C support | 36 | #define z90crypt_VARIANT 2 // 2 = added PCIXCC MCL3 and CEX2C support |
| 37 | 37 | ||
| 38 | /** | 38 | /** |
| 39 | * If we are not using the sparse checker, __user has no use. | ||
| 40 | */ | ||
| 41 | #ifdef __CHECKER__ | ||
| 42 | # define __user __attribute__((noderef, address_space(1))) | ||
| 43 | #else | ||
| 44 | # define __user | ||
| 45 | #endif | ||
| 46 | |||
| 47 | /** | ||
| 48 | * struct ica_rsa_modexpo | 39 | * struct ica_rsa_modexpo |
| 49 | * | 40 | * |
| 50 | * Requirements: | 41 | * Requirements: |
diff --git a/include/asm-s390/uaccess.h b/include/asm-s390/uaccess.h index a7f43a251f81..3e3bfe6a8fa8 100644 --- a/include/asm-s390/uaccess.h +++ b/include/asm-s390/uaccess.h | |||
| @@ -149,11 +149,11 @@ struct exception_table_entry | |||
| 149 | }) | 149 | }) |
| 150 | #endif | 150 | #endif |
| 151 | 151 | ||
| 152 | #ifndef __CHECKER__ | ||
| 153 | #define __put_user(x, ptr) \ | 152 | #define __put_user(x, ptr) \ |
| 154 | ({ \ | 153 | ({ \ |
| 155 | __typeof__(*(ptr)) __x = (x); \ | 154 | __typeof__(*(ptr)) __x = (x); \ |
| 156 | int __pu_err; \ | 155 | int __pu_err; \ |
| 156 | __chk_user_ptr(ptr); \ | ||
| 157 | switch (sizeof (*(ptr))) { \ | 157 | switch (sizeof (*(ptr))) { \ |
| 158 | case 1: \ | 158 | case 1: \ |
| 159 | case 2: \ | 159 | case 2: \ |
| @@ -167,14 +167,6 @@ struct exception_table_entry | |||
| 167 | } \ | 167 | } \ |
| 168 | __pu_err; \ | 168 | __pu_err; \ |
| 169 | }) | 169 | }) |
| 170 | #else | ||
| 171 | #define __put_user(x, ptr) \ | ||
| 172 | ({ \ | ||
| 173 | void __user *p; \ | ||
| 174 | p = (ptr); \ | ||
| 175 | 0; \ | ||
| 176 | }) | ||
| 177 | #endif | ||
| 178 | 170 | ||
| 179 | #define put_user(x, ptr) \ | 171 | #define put_user(x, ptr) \ |
| 180 | ({ \ | 172 | ({ \ |
| @@ -213,11 +205,11 @@ extern int __put_user_bad(void) __attribute__((noreturn)); | |||
| 213 | }) | 205 | }) |
| 214 | #endif | 206 | #endif |
| 215 | 207 | ||
| 216 | #ifndef __CHECKER__ | ||
| 217 | #define __get_user(x, ptr) \ | 208 | #define __get_user(x, ptr) \ |
| 218 | ({ \ | 209 | ({ \ |
| 219 | __typeof__(*(ptr)) __x; \ | 210 | __typeof__(*(ptr)) __x; \ |
| 220 | int __gu_err; \ | 211 | int __gu_err; \ |
| 212 | __chk_user_ptr(ptr); \ | ||
| 221 | switch (sizeof(*(ptr))) { \ | 213 | switch (sizeof(*(ptr))) { \ |
| 222 | case 1: \ | 214 | case 1: \ |
| 223 | case 2: \ | 215 | case 2: \ |
| @@ -232,15 +224,6 @@ extern int __put_user_bad(void) __attribute__((noreturn)); | |||
| 232 | (x) = __x; \ | 224 | (x) = __x; \ |
| 233 | __gu_err; \ | 225 | __gu_err; \ |
| 234 | }) | 226 | }) |
| 235 | #else | ||
| 236 | #define __get_user(x, ptr) \ | ||
| 237 | ({ \ | ||
| 238 | void __user *p; \ | ||
| 239 | p = (ptr); \ | ||
| 240 | 0; \ | ||
| 241 | }) | ||
| 242 | #endif | ||
| 243 | |||
| 244 | 227 | ||
| 245 | #define get_user(x, ptr) \ | 228 | #define get_user(x, ptr) \ |
| 246 | ({ \ | 229 | ({ \ |
