Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1583875 > unrolled thread

[GIT pull] locking fix for 4.10

Started byThomas Gleixner <tglx@linutronix.de>
First post2017-02-18 10:40 +0100
Last post2017-02-18 10:40 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [GIT pull] locking fix for 4.10 Thomas Gleixner <tglx@linutronix.de> - 2017-02-18 10:40 +0100

#1583875 — [GIT pull] locking fix for 4.10

FromThomas Gleixner <tglx@linutronix.de>
Date2017-02-18 10:40 +0100
Subject[GIT pull] locking fix for 4.10
Message-ID<tc9EK-5W-27@gated-at.bofh.it>
Linus,

please pull the latest locking-urgent-for-linus git tree from:

   git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking-urgent-for-linus

Move the futex init function to core initcall so user mode helper does not
run into an uninitialized futex syscall.

Thanks,

	tglx

------------------>
Yang Yang (1):
      futex: Move futex_init() to core_initcall


 kernel/futex.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/futex.c b/kernel/futex.c
index 0842c8ca534b..cdf365036141 100644
--- a/kernel/futex.c
+++ b/kernel/futex.c
@@ -3323,4 +3323,4 @@ static int __init futex_init(void)
 
 	return 0;
 }
-__initcall(futex_init);
+core_initcall(futex_init);

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web