The patch titled Subject: hfsplus: prevent crash on exit from failed search has been removed from the -mm tree. Its filename was hfsplus-prevent-crash-on-exit-from-failed-search.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Ernesto A. Fernandez <ernesto.mnd.fernandez@xxxxxxxxx> Subject: hfsplus: prevent crash on exit from failed search hfs_find_exit() expects fd->bnode to be NULL after a search has failed. hfs_brec_insert() may instead set it to an error-valued pointer. Fix this to prevent a crash. Link: http://lkml.kernel.org/r/803590a35221fbf411b2c141419aea3233a6e990.1530294813.git.ernesto.mnd.fernandez@xxxxxxxxx Signed-off-by: Ernesto A. Fernandez <ernesto.mnd.fernandez@xxxxxxxxx> Reported-by: Anatoly Trosinenko <anatoly.trosinenko@xxxxxxxxx> Reviewed-by: Vyacheslav Dubeyko <slava@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/hfsplus/brec.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) --- a/fs/hfsplus/brec.c~hfsplus-prevent-crash-on-exit-from-failed-search +++ a/fs/hfsplus/brec.c @@ -73,9 +73,10 @@ int hfs_brec_insert(struct hfs_find_data if (!fd->bnode) { if (!tree->root) hfs_btree_inc_height(tree); - fd->bnode = hfs_bnode_find(tree, tree->leaf_head); - if (IS_ERR(fd->bnode)) - return PTR_ERR(fd->bnode); + node = hfs_bnode_find(tree, tree->leaf_head); + if (IS_ERR(node)) + return PTR_ERR(node); + fd->bnode = node; fd->record = -1; } new_node = NULL; _ Patches currently in -mm which might be from ernesto.mnd.fernandez@xxxxxxxxx are