Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | # |
| 3 | # Makefile for s390-specific library files.. |
| 4 | # |
| 5 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 6 | lib-y += delay.o string.o uaccess.o find.o spinlock.o |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 7 | obj-y += mem.o xor.o |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 8 | lib-$(CONFIG_KPROBES) += probes.o |
| 9 | lib-$(CONFIG_UPROBES) += probes.o |
| 10 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 11 | # Instrumenting memory accesses to __user data (in different address space) |
| 12 | # produce false positives |
| 13 | KASAN_SANITIZE_uaccess.o := n |