Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1594662
| From | Steven Rostedt <rostedt@goodmis.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH RT 08/10] rt: Drop the removal of _GPL from rt_mutex_destroy()s EXPORT_SYMBOL |
| Date | 2017-03-07 22:30 +0100 |
| Message-ID | <tiuQ9-52G-17@gated-at.bofh.it> (permalink) |
| References | <tiuQ9-52G-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
4.4.50-rt63-rc1 stable review patch. If anyone has any objections, please let me know. ------------------ 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> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org> --- 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 56f5f1a9baf8..0e9a6260441d 100644 --- a/kernel/locking/rtmutex.c +++ b/kernel/locking/rtmutex.c @@ -2216,7 +2216,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.10.2
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH RT 00/10] Linux 4.4.50-rt63-rc1 Steven Rostedt <rostedt@goodmis.org> - 2017-03-07 22:30 +0100 [PATCH RT 02/10] radix-tree: use local locks Steven Rostedt <rostedt@goodmis.org> - 2017-03-07 22:30 +0100 [PATCH RT 05/10] rt: Drop mutex_disable() on !DEBUG configs and the GPL suffix from export symbol Steven Rostedt <rostedt@goodmis.org> - 2017-03-07 22:30 +0100 [PATCH RT 08/10] rt: Drop the removal of _GPL from rt_mutex_destroy()s EXPORT_SYMBOL Steven Rostedt <rostedt@goodmis.org> - 2017-03-07 22:30 +0100 [PATCH RT 10/10] Linux 4.4.50-rt63-rc1 Steven Rostedt <rostedt@goodmis.org> - 2017-03-07 22:30 +0100 [PATCH RT 06/10] sched/rt: Add a missing rescheduling point Steven Rostedt <rostedt@goodmis.org> - 2017-03-07 22:30 +0100 [PATCH RT 07/10] lockdep: Handle statically initialized PER_CPU locks proper Steven Rostedt <rostedt@goodmis.org> - 2017-03-07 22:30 +0100 [PATCH RT 09/10] lockdep: Fix compilation error for !CONFIG_MODULES and !CONFIG_SMP Steven Rostedt <rostedt@goodmis.org> - 2017-03-07 22:30 +0100 [PATCH RT 03/10] pinctrl: qcom: Use raw spinlock variants Steven Rostedt <rostedt@goodmis.org> - 2017-03-07 22:30 +0100 [PATCH RT 01/10] cpuset: Convert callback_lock to raw_spinlock_t Steven Rostedt <rostedt@goodmis.org> - 2017-03-07 22:30 +0100
csiph-web