The patch titled Subject: mmotm: cxgb4-drop-__gfp_nofail-allocation-fix has been removed from the -mm tree. Its filename was cxgb4-drop-__gfp_nofail-allocation-fix.patch This patch was dropped because it was folded into cxgb4-drop-__gfp_nofail-allocation.patch ------------------------------------------------------ From: Michal Hocko <mhocko@xxxxxxx> Subject: mmotm: cxgb4-drop-__gfp_nofail-allocation-fix Use kfree_skb instead of kfree because the allocation is done by alloc_skb. Signed-off-by: Michal Hocko <mhocko@xxxxxxx> Reported-by: Tetsuo Handa <penguin-kernel@xxxxxxxxxxxxxxxxxxx> Cc: Hariprasad S <hariprasad@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c~cxgb4-drop-__gfp_nofail-allocation-fix drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c --- a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c~cxgb4-drop-__gfp_nofail-allocation-fix +++ a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c @@ -1161,14 +1161,14 @@ static int set_filter_wr(struct adapter /* allocate L2T entry for new filter */ f->l2t = t4_l2t_alloc_switching(adapter->l2t); if (f->l2t == NULL) { - kfree(skb); + kfree_skb(skb); return -EAGAIN; } if (t4_l2t_set_switching(adapter, f->l2t, f->fs.vlan, f->fs.eport, f->fs.dmac)) { cxgb4_l2t_release(f->l2t); f->l2t = NULL; - kfree(skb); + kfree_skb(skb); return -ENOMEM; } } _ Patches currently in -mm which might be from mhocko@xxxxxxx are mm-hugetlb-use-pmd_page-in-follow_huge_pmd.patch cxgb4-drop-__gfp_nofail-allocation.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