The patch titled reiser4: use NULL for pointers has been removed from the -mm tree. Its filename was reiser4-use-null-for-pointers.patch This patch was dropped because it was folded into reiser4.patch ------------------------------------------------------ Subject: reiser4: use NULL for pointers From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Use NULL instead of 0 for pointers. fs/reiser4/plugin/item/ctail.c:1188:38: warning: Using plain integer as NULL pointer Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: Vladimir Saveliev <vs@xxxxxxxxxxx> Cc: Edward Shishkin <edward@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/reiser4/plugin/item/ctail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/reiser4/plugin/item/ctail.c~reiser4-use-null-for-pointers fs/reiser4/plugin/item/ctail.c --- a/fs/reiser4/plugin/item/ctail.c~reiser4-use-null-for-pointers +++ a/fs/reiser4/plugin/item/ctail.c @@ -1154,7 +1154,7 @@ static int alloc_convert_data(flush_pos_ if (!pos->sq) return RETERR(-ENOMEM); memset(pos->sq, 0, sizeof(*pos->sq)); - cluster_init_write(&pos->sq->clust, 0); + cluster_init_write(&pos->sq->clust, NULL); return 0; } _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch atyfb-fix-kconfig-error-part-2.patch git-drm.patch phy-layer-add-kernel-doc-docbook.patch fusion-kernel-doc-warning-fixes.patch scripts-kernel-doc-whitespace-cleanup.patch reiser4.patch reiser4-use-null-for-pointers.patch profile_likely-export-do_check_likely.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