aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/workqueue.c
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 16:09:04 -0500
committerGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 16:09:04 -0500
commit3d1c6d44d3f133909d1c594351c2b7c779b1d7d4 (patch)
tree744d95a5bfa7890fac16e759d5844f23420485d8 /kernel/workqueue.c
parentf5264e2cb8213dad425cb2d2db564edbc443a51a (diff)
Some cleanup of PAIwip-pai
Diffstat (limited to 'kernel/workqueue.c')
-rw-r--r--kernel/workqueue.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 637cadac2627..2293aadbb1ab 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -2531,6 +2531,7 @@ EXPORT_SYMBOL(cancel_delayed_work_sync);
2531 */ 2531 */
2532int schedule_work(struct work_struct *work) 2532int schedule_work(struct work_struct *work)
2533{ 2533{
2534#if 0
2534#if defined(CONFIG_LITMUS_NVIDIA) && defined(CONFIG_LITMUS_SOFTIRQD) 2535#if defined(CONFIG_LITMUS_NVIDIA) && defined(CONFIG_LITMUS_SOFTIRQD)
2535 if(is_nvidia_func(work->func)) 2536 if(is_nvidia_func(work->func))
2536 { 2537 {
@@ -2583,7 +2584,7 @@ int schedule_work(struct work_struct *work)
2583 unlock_nv_registry(nvidiaDevice, &flags); 2584 unlock_nv_registry(nvidiaDevice, &flags);
2584 } 2585 }
2585#endif 2586#endif
2586 2587#endif
2587 return(__schedule_work(work)); 2588 return(__schedule_work(work));
2588} 2589}
2589EXPORT_SYMBOL(schedule_work); 2590EXPORT_SYMBOL(schedule_work);