The patch titled Subject: mm/zswap.c: remove unneeded initialization to NULL in zswap_entry_find_get() has been removed from the -mm tree. Its filename was mm-zswap-remove-unneeded-initialization-to-null-in-zswap_entry_find_get.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Alexey Klimov <alexey.klimov@xxxxxxxxxx> Subject: mm/zswap.c: remove unneeded initialization to NULL in zswap_entry_find_get() On the next line entry variable will be re-initialized so no need to init it with NULL. Signed-off-by: Alexey Klimov <alexey.klimov@xxxxxxxxxx> Cc: Seth Jennings <sjennings@xxxxxxxxxxxxxx> Cc: Dan Streetman <ddstreet@xxxxxxxx> Cc: Minchan Kim <minchan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/zswap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/zswap.c~mm-zswap-remove-unneeded-initialization-to-null-in-zswap_entry_find_get mm/zswap.c --- a/mm/zswap.c~mm-zswap-remove-unneeded-initialization-to-null-in-zswap_entry_find_get +++ a/mm/zswap.c @@ -342,7 +342,7 @@ static void zswap_entry_put(struct zswap static struct zswap_entry *zswap_entry_find_get(struct rb_root *root, pgoff_t offset) { - struct zswap_entry *entry = NULL; + struct zswap_entry *entry; entry = zswap_rb_search(root, offset); if (entry) _ Patches currently in -mm which might be from alexey.klimov@xxxxxxxxxx are -- 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