The patch titled down_interruptible() can return -EINTR, not EINTR has been removed from the -mm tree. Its filename was libertas-down_interruptible-can-return-eintr-not-eintr.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: down_interruptible() can return -EINTR, not EINTR From: roel kluin <roel.kluin@xxxxxxxxx> Fix test in lbs_spi_thread(). down_interruptible() can return -EINTR, but not EINTR. Signed-off-by: Roel Kluin <roel.kluin@xxxxxxxxx> Cc: Dan Williams <dcbw@xxxxxxxxxx> Cc: "John W. Linville" <linville@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/wireless/libertas/if_spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/wireless/libertas/if_spi.c~libertas-down_interruptible-can-return-eintr-not-eintr drivers/net/wireless/libertas/if_spi.c --- a/drivers/net/wireless/libertas/if_spi.c~libertas-down_interruptible-can-return-eintr-not-eintr +++ a/drivers/net/wireless/libertas/if_spi.c @@ -784,7 +784,7 @@ static int lbs_spi_thread(void *data) up(&card->spi_thread_terminated); do_exit(0); } - } while (err == EINTR); + } while (err == -EINTR); /* Read the host interrupt status register to see what we * can do. */ _ Patches currently in -mm which might be from roel.kluin@xxxxxxxxx are linux-next.patch btrfs-dont-dereference-extent_mapping-if-null.patch macintosh-wrong-test-in-fan_readwrite_reg.patch frv-duplicate-output_buffer-of-e03.patch frv-duplicate-output_buffer-of-e03-checkpatch-fixes.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