Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1595500
| From | Steven Rostedt <rostedt@goodmis.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH RT 5/7] rt: Drop the removal of _GPL from rt_mutex_destroy()s EXPORT_SYMBOL |
| Date | 2017-03-08 21:40 +0100 |
| Message-ID | <tiQxl-3cL-47@gated-at.bofh.it> (permalink) |
| References | <tiQxj-3cL-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
3.12.70-rt95-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/rtmutex.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/rtmutex.c b/kernel/rtmutex.c index 63ac099b3b8d..43d98d373809 100644 --- a/kernel/rtmutex.c +++ b/kernel/rtmutex.c @@ -2004,7 +2004,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 0/7] Linux 3.12.70-rt95-rc1 Steven Rostedt <rostedt@goodmis.org> - 2017-03-08 21:40 +0100 [PATCH RT 7/7] Linux 3.12.70-rt95-rc1 Steven Rostedt <rostedt@goodmis.org> - 2017-03-08 21:40 +0100 [PATCH RT 5/7] rt: Drop the removal of _GPL from rt_mutex_destroy()s EXPORT_SYMBOL Steven Rostedt <rostedt@goodmis.org> - 2017-03-08 21:40 +0100 [PATCH RT 3/7] rt: Drop mutex_disable() on !DEBUG configs and the GPL suffix from export symbol Steven Rostedt <rostedt@goodmis.org> - 2017-03-08 21:40 +0100 [PATCH RT 6/7] lockdep: Fix compilation error for !CONFIG_MODULES and !CONFIG_SMP Steven Rostedt <rostedt@goodmis.org> - 2017-03-08 21:40 +0100 [PATCH RT 2/7] x86/mm/cpa: avoid wbinvd() for PREEMPT Steven Rostedt <rostedt@goodmis.org> - 2017-03-08 22:00 +0100
csiph-web