The patch titled Fix IS_ERR Threshold Value has been removed from the -mm tree. Its filename is fix-is_err-threshold-value.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Fix IS_ERR Threshold Value From: Ralf Baechle <ralf@xxxxxxxxxxxxxx> o Raise the maximum error number in IS_ERR_VALUE to 4095. o Make that number available as a new constant MAX_ERRNO. Signed-off-by: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/err.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN include/linux/err.h~fix-is_err-threshold-value include/linux/err.h --- a/include/linux/err.h~fix-is_err-threshold-value +++ a/include/linux/err.h @@ -13,7 +13,9 @@ * This should be a per-architecture thing, to allow different * error and pointer decisions. */ -#define IS_ERR_VALUE(x) unlikely((x) > (unsigned long)-1000L) +#define MAX_ERRNO 4095 + +#define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO) static inline void *ERR_PTR(long error) { _ Patches currently in -mm which might be from ralf@xxxxxxxxxxxxxx are origin.patch irq-flags-consolidate-flags-for-request_irq.patch irq-flags-mips-use-the-new-irqf_-constansts.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