The patch titled Subject: drm/nouveau/gem: use kvfree() in u_free() has been removed from the -mm tree. Its filename was drm-nouveau-gem-use-kvfree-in-u_free.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Pekka Enberg <penberg@xxxxxxxxxx> Subject: drm/nouveau/gem: use kvfree() in u_free() Use kvfree() instead of open-coding it. Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxx> Cc: David Airlie <airlied@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/gpu/drm/nouveau/nouveau_gem.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff -puN drivers/gpu/drm/nouveau/nouveau_gem.c~drm-nouveau-gem-use-kvfree-in-u_free drivers/gpu/drm/nouveau/nouveau_gem.c --- a/drivers/gpu/drm/nouveau/nouveau_gem.c~drm-nouveau-gem-use-kvfree-in-u_free +++ a/drivers/gpu/drm/nouveau/nouveau_gem.c @@ -555,10 +555,7 @@ nouveau_gem_pushbuf_validate(struct nouv static inline void u_free(void *addr) { - if (!is_vmalloc_addr(addr)) - kfree(addr); - else - vfree(addr); + kvfree(addr); } static inline void * _ 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