The patch titled Subject: btree: catch NULL value before it does harm has been added to the -mm tree. Its filename is btree-catch-null-value-before-it-does-harm.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Joern Engel <joern@xxxxxxxxx> Subject: btree: catch NULL value before it does harm Storing NULL values in the btree is illegal and can lead to memory corruption and possible other fun as well. Catch it on insert, instead of waiting for the inevitable. Signed-off-by: Joern Engel <joern@xxxxxxxxx> Signed-off-by: Roland Dreier <roland@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/btree.c | 1 + 1 file changed, 1 insertion(+) diff -puN lib/btree.c~btree-catch-null-value-before-it-does-harm lib/btree.c --- a/lib/btree.c~btree-catch-null-value-before-it-does-harm +++ a/lib/btree.c @@ -509,6 +509,7 @@ retry: int btree_insert(struct btree_head *head, struct btree_geo *geo, unsigned long *key, void *val, gfp_t gfp) { + BUG_ON(!val); return btree_insert_level(head, geo, key, val, 1, gfp); } EXPORT_SYMBOL_GPL(btree_insert); _ Subject: Subject: btree: catch NULL value before it does harm Patches currently in -mm which might be from joern@xxxxxxxxx are btree-fix-tree-corruption-in-btree_get_prev.patch btree-fix-tree-corruption-in-btree_get_prev-fix.patch btree-catch-null-value-before-it-does-harm.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