Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1594752
| From | Julia Cartwright <julia@ni.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH RT 7/9] rt: Drop the removal of _GPL from rt_mutex_destroy()'s |
| Date | 2017-03-08 01:40 +0100 |
| Message-ID | <tixO1-76a-7@gated-at.bofh.it> (permalink) |
| References | <tix1E-6vP-13@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
4.1.38-rt46-rc1 stable review patch. If you have any objection to the inclusion of this patch, let me know. --- 8< --- 8< --- 8< --- From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> What we have now should be enough, the EXPORT_SYMBOL statement for rt_mutex_destroy() is not required. Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> (cherry picked from commit 5dbe8fd80a2ccfc8c24874e19259df51d91e02a2) Signed-off-by: Julia Cartwright <julia@ni.com> --- kernel/locking/rtmutex.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/locking/rtmutex.c b/kernel/locking/rtmutex.c index 469075e06cde..e0b0d9b419b5 100644 --- a/kernel/locking/rtmutex.c +++ b/kernel/locking/rtmutex.c @@ -2015,7 +2015,8 @@ void rt_mutex_destroy(struct rt_mutex *lock) lock->magic = NULL; #endif } -EXPORT_SYMBOL(rt_mutex_destroy); + +EXPORT_SYMBOL_GPL(rt_mutex_destroy); /** * __rt_mutex_init - initialize the rt lock -- 2.11.1
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH RT 0/9] Linux 4.1.38-rt46-rc1 Julia Cartwright <julia@ni.com> - 2017-03-08 01:10 +0100 [PATCH RT 6/9] lockdep: Handle statically initialized PER_CPU locks Julia Cartwright <julia@ni.com> - 2017-03-08 01:30 +0100 [PATCH RT 7/9] rt: Drop the removal of _GPL from rt_mutex_destroy()'s Julia Cartwright <julia@ni.com> - 2017-03-08 01:40 +0100 [PATCH RT 5/9] rt: Drop mutex_disable() on !DEBUG configs and the GPL Julia Cartwright <julia@ni.com> - 2017-03-08 01:40 +0100 [PATCH RT 9/9] Linux 4.1.38-rt46-rc1 Julia Cartwright <julia@ni.com> - 2017-03-08 02:00 +0100 [PATCH RT 1/9] cpuset: Convert callback_lock to raw_spinlock_t Julia Cartwright <julia@ni.com> - 2017-03-08 02:00 +0100 [PATCH RT 2/9] radix-tree: use local locks Julia Cartwright <julia@ni.com> - 2017-03-08 02:20 +0100 [PATCH RT 8/9] lockdep: Fix compilation error for !CONFIG_MODULES and Julia Cartwright <julia@ni.com> - 2017-03-08 04:40 +0100
csiph-web