The patch titled drivers/dlm: fix-up schedule_timeout() usage has been removed from the -mm tree. Its filename is drivers-dlm-fix-up-schedule_timeout-usage.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: Nishanth Aravamudan <nacc@xxxxxxxxxx> Use schedule_timeout_interruptible() instead of set_current_state()/schedule_timeout() to reduce kernel size. (akpm: this patch relies on other stuff in -mm, please don't apply) Signed-off-by: Nishanth Aravamudan <nacc@xxxxxxxxxx> Cc: David Teigland <teigland@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> Cc: Steven Whitehouse <swhiteho@xxxxxxxxxx> --- drivers/dlm/lockspace.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/dlm/lockspace.c~drivers-dlm-fix-up-schedule_timeout-usage drivers/dlm/lockspace.c --- 25/drivers/dlm/lockspace.c~drivers-dlm-fix-up-schedule_timeout-usage Thu Jan 19 16:07:17 2006 +++ 25-akpm/drivers/dlm/lockspace.c Thu Jan 19 16:07:17 2006 @@ -199,8 +199,7 @@ static int dlm_scand(void *data) while (!kthread_should_stop()) { list_for_each_entry(ls, &lslist, ls_list) dlm_scan_rsbs(ls); - set_current_state(TASK_INTERRUPTIBLE); - schedule_timeout(dlm_config.scan_secs * HZ); + schedule_timeout_interruptible(dlm_config.scan_secs * HZ); } return 0; } _ Patches currently in -mm which might be from nacc@xxxxxxxxxx are - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html