The patch titled
workqueue: make delayed_work_timer_fn() static
has been removed from the -mm tree. Its filename was
workqueue-make-delayed_work_timer_fn-static.patch
This patch was dropped because it was merged into mainline or a subsystem tree
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: workqueue: make delayed_work_timer_fn() static
From: Li Zefan <[EMAIL PROTECTED]>
delayed_work_timer_fn() is a timer function, make it static.
Signed-off-by: Li Zefan <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
include/linux/timer.h | 2 --
kernel/workqueue.c | 2 +-
2 files changed, 1 insertion(+), 3 deletions(-)
diff -puN include/linux/timer.h~workqueue-make-delayed_work_timer_fn-static
include/linux/timer.h
--- a/include/linux/timer.h~workqueue-make-delayed_work_timer_fn-static
+++ a/include/linux/timer.h
@@ -124,8 +124,6 @@ static inline void timer_stats_timer_cle
}
#endif
-extern void delayed_work_timer_fn(unsigned long __data);
-
/**
* add_timer - start a timer
* @timer: the timer to be added
diff -puN kernel/workqueue.c~workqueue-make-delayed_work_timer_fn-static
kernel/workqueue.c
--- a/kernel/workqueue.c~workqueue-make-delayed_work_timer_fn-static
+++ a/kernel/workqueue.c
@@ -175,7 +175,7 @@ int queue_work(struct workqueue_struct *
}
EXPORT_SYMBOL_GPL(queue_work);
-void delayed_work_timer_fn(unsigned long __data)
+static void delayed_work_timer_fn(unsigned long __data)
{
struct delayed_work *dwork = (struct delayed_work *)__data;
struct cpu_workqueue_struct *cwq = get_wq_data(&dwork->work);
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html