瀏覽代碼

Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull timer fix from Ingo Molnar:
 "Fix for a misplaced export that can cause build failures in certain
  (rare) Kconfig situations"

* 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  tick: Move the export of tick_broadcast_oneshot_control to the proper place
Linus Torvalds 10 年之前
父節點
當前提交
dae57fb64e
共有 2 個文件被更改,包括 1 次插入1 次删除
  1. 0 1
      kernel/time/tick-broadcast.c
  2. 1 0
      kernel/time/tick-common.c

+ 0 - 1
kernel/time/tick-broadcast.c

@@ -839,7 +839,6 @@ out:
 	raw_spin_unlock(&tick_broadcast_lock);
 	raw_spin_unlock(&tick_broadcast_lock);
 	return ret;
 	return ret;
 }
 }
-EXPORT_SYMBOL_GPL(tick_broadcast_oneshot_control);
 
 
 /*
 /*
  * Reset the one shot broadcast for a cpu
  * Reset the one shot broadcast for a cpu

+ 1 - 0
kernel/time/tick-common.c

@@ -363,6 +363,7 @@ int tick_broadcast_oneshot_control(enum tick_broadcast_state state)
 
 
 	return __tick_broadcast_oneshot_control(state);
 	return __tick_broadcast_oneshot_control(state);
 }
 }
+EXPORT_SYMBOL_GPL(tick_broadcast_oneshot_control);
 
 
 #ifdef CONFIG_HOTPLUG_CPU
 #ifdef CONFIG_HOTPLUG_CPU
 /*
 /*