The patch titled cpumask add highest_possible_node_id fix has been removed from the -mm tree. Its filename is cpumask-add-highest_possible_node_id-fix.patch This patch was dropped because it was folded into cpumask-add-highest_possible_node_id.patch ------------------------------------------------------ Subject: cpumask add highest_possible_node_id fix From: Paul Jackson <pj@xxxxxxx> Fix typo in lib/cpumask.c - looks like a cut+paste forgot to change a cpu macro call to a node macro call. This typo caused the following build warnings: lib/cpumask.c: In function `highest_possible_node_id': lib/cpumask.c:56: warning: passing arg 1 of `__first_cpu' from incompatible pointer type lib/cpumask.c:56: warning: passing arg 2 of `__next_cpu' from incompatible pointer type Signed-off-by: Paul Jackson <pj@xxxxxxx> Cc: Greg Banks <gnb@xxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- lib/cpumask.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN lib/cpumask.c~cpumask-add-highest_possible_node_id-fix lib/cpumask.c --- a/lib/cpumask.c~cpumask-add-highest_possible_node_id-fix +++ a/lib/cpumask.c @@ -53,7 +53,7 @@ int highest_possible_node_id(void) unsigned int node; unsigned int highest = 0; - for_each_cpu_mask(node, node_possible_map) + for_each_node_mask(node, node_possible_map) highest = node; return highest; } _ Patches currently in -mm which might be from pj@xxxxxxx are origin.patch cpumask-add-highest_possible_node_id.patch cpumask-add-highest_possible_node_id-fix.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