The patch titled Subject: libcxgbi: use kvfree() in cxgbi_free_big_mem() has been removed from the -mm tree. Its filename was libcxgbi-use-kvfree-in-cxgbi_free_big_mem.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Pekka Enberg <penberg@xxxxxxxxxx> Subject: libcxgbi: use kvfree() in cxgbi_free_big_mem() Use kvfree() instead of open-coding it. Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxx> Cc: "James E.J. Bottomley" <JBottomley@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/scsi/cxgbi/libcxgbi.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff -puN drivers/scsi/cxgbi/libcxgbi.h~libcxgbi-use-kvfree-in-cxgbi_free_big_mem drivers/scsi/cxgbi/libcxgbi.h --- a/drivers/scsi/cxgbi/libcxgbi.h~libcxgbi-use-kvfree-in-cxgbi_free_big_mem +++ a/drivers/scsi/cxgbi/libcxgbi.h @@ -685,10 +685,7 @@ static inline void *cxgbi_alloc_big_mem( static inline void cxgbi_free_big_mem(void *addr) { - if (is_vmalloc_addr(addr)) - vfree(addr); - else - kfree(addr); + kvfree(addr); } static inline void cxgbi_set_iscsi_ipv4(struct cxgbi_hba *chba, __be32 ipaddr) _ 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