diff options
author | dchagin <dchagin@FreeBSD.org> | 2015-05-24 16:14:41 +0000 |
---|---|---|
committer | dchagin <dchagin@FreeBSD.org> | 2015-05-24 16:14:41 +0000 |
commit | f5eca4c95705929d25f9548a80b5041730c2186f (patch) | |
tree | b9f3eef56bef3f255bf956afdccd66fca35702b1 /sys/compat/linux/linux_futex.c | |
parent | 8628fb1e0f34fc0ba285bde3d8bb9b2ee08f340e (diff) | |
download | FreeBSD-src-f5eca4c95705929d25f9548a80b5041730c2186f.zip FreeBSD-src-f5eca4c95705929d25f9548a80b5041730c2186f.tar.gz |
Where possible we will use M_LINUX malloc(9) type.
Move M_FUTEX defines to the linux_common.ko.
Differential Revision: https://reviews.freebsd.org/D1077
Reviewed by: emaste
Diffstat (limited to 'sys/compat/linux/linux_futex.c')
-rw-r--r-- | sys/compat/linux/linux_futex.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/compat/linux/linux_futex.c b/sys/compat/linux/linux_futex.c index 3338b46..6924e58 100644 --- a/sys/compat/linux/linux_futex.c +++ b/sys/compat/linux/linux_futex.c @@ -184,9 +184,6 @@ LIN_SDT_PROBE_DEFINE2(futex, release_futexes, entry, "struct thread *", LIN_SDT_PROBE_DEFINE1(futex, release_futexes, copyin_error, "int"); LIN_SDT_PROBE_DEFINE0(futex, release_futexes, return); -static MALLOC_DEFINE(M_FUTEX, "futex", "Linux futexes"); -static MALLOC_DEFINE(M_FUTEX_WP, "futex wp", "Linux futexes wp"); - struct futex; struct waiting_proc { |