The patch titled reiserfs: use __set_current_state() has been removed from the -mm tree. Its filename was reiserfs-use-__set_current_state.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: reiserfs: use __set_current_state() From: Milind Arun Choudhary <milindchoudhary@xxxxxxxxx> use __set_current_state(TASK_*) instead of current->state = TASK_*, in fs/reiserfs Signed-off-by: Milind Arun Choudhary <milindchoudhary@xxxxxxxxx> Cc: <reiserfs-dev@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/reiserfs/journal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/reiserfs/journal.c~reiserfs-use-__set_current_state fs/reiserfs/journal.c --- a/fs/reiserfs/journal.c~reiserfs-use-__set_current_state +++ a/fs/reiserfs/journal.c @@ -2918,7 +2918,7 @@ static void queue_log_writer(struct supe set_current_state(TASK_UNINTERRUPTIBLE); if (test_bit(J_WRITERS_QUEUED, &journal->j_state)) schedule(); - current->state = TASK_RUNNING; + __set_current_state(TASK_RUNNING); remove_wait_queue(&journal->j_join_wait, &wait); } _ Patches currently in -mm which might be from milindchoudhary@xxxxxxxxx are origin.patch git-alsa.patch git-ia64.patch spin_lock_unlocked-macro-cleanup-in-arch-ia64.patch nfs-use-__set_current_state.patch round_up-macro-cleanup-in-drivers-parisc.patch round_up-macro-cleanup-in-drivers-pci.patch pcie-remove-spin_lock_unlocked.patch round_up-macro-cleanup-in-arch-sh64-kernel-pci_sh5c.patch - 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