The patch titled Subject: cxgb3: use kvfree() in cxgb_free_mem() has been removed from the -mm tree. Its filename was cxgb3-use-kvfree-in-cxgb_free_mem.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Pekka Enberg <penberg@xxxxxxxxxx> Subject: cxgb3: use kvfree() in cxgb_free_mem() Use kvfree() instead of open-coding it. Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxx> Cc: Santosh Raspatur <santosh@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff -puN drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c~cxgb3-use-kvfree-in-cxgb_free_mem drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c --- a/drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c~cxgb3-use-kvfree-in-cxgb_free_mem +++ a/drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c @@ -1169,10 +1169,7 @@ void *cxgb_alloc_mem(unsigned long size) */ void cxgb_free_mem(void *addr) { - if (is_vmalloc_addr(addr)) - vfree(addr); - else - kfree(addr); + kvfree(addr); } /* _ Patches currently in -mm which might be from penberg@xxxxxxxxxx are slab-infrastructure-for-bulk-object-allocation-and-freeing-v3.patch slab-infrastructure-for-bulk-object-allocation-and-freeing-v3-fix.patch slub-bulk-alloc-extract-objects-from-the-per-cpu-slab.patch page-flags-define-behavior-slb-related-flags-on-compound-pages.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