The patch titled Subject: mm-simplify-nodemask-printing-fix has been removed from the -mm tree. Its filename was mm-simplify-nodemask-printing-fix.patch This patch was dropped because it was folded into mm-simplify-nodemask-printing.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-simplify-nodemask-printing-fix fix tile warning, per Arnd Cc: Joe Perches <joe@xxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/nodemask.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN include/linux/nodemask.h~mm-simplify-nodemask-printing-fix include/linux/nodemask.h --- a/include/linux/nodemask.h~mm-simplify-nodemask-printing-fix +++ a/include/linux/nodemask.h @@ -104,7 +104,9 @@ extern nodemask_t _unused_nodemask_arg_; * * Can be used to provide arguments for '%*pb[l]' when printing a nodemask. */ -#define nodemask_pr_args(maskp) (maskp) ? MAX_NUMNODES : 0, (maskp) ? (maskp)->bits : NULL +#define nodemask_pr_args(maskp) \ + ((maskp) != NULL) ? MAX_NUMNODES : 0, \ + ((maskp) != NULL) ? (maskp)->bits : NULL /* * The inline keyword gives the compiler room to decide to inline, or _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are include-linux-sched-mmh-uninline-mmdrop_async-etc.patch mm-simplify-nodemask-printing.patch mm-make-alloc_node_mem_map-a-voidcall-if-we-dont-have-config_flat_node_mem_map-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