Prev: CacheFiles: Fix error handling in cachefiles_determine_cache_security()
Next: [PATCH 2/9] relay: use kvcalloc and kvfree
From: Changli Gao on 13 May 2010 06:00 generic adaptive large memory allocation APIs kv*alloc are used to allocate large contiguous memory and the users don't mind whether the memory is physically or virtually contiguous. The allocator always try its best to allocate physically contiguous memory first. In this patch set, some APIs are introduced: kvmalloc(), kvzalloc(), kvcalloc(), kvrealloc(), kvfree() and kvfree_inatomic(). Some code are converted to use the new generic APIs instead. Signed-off-by: Changli Gao <xiaosuo(a)gmail.com> ---- drivers/infiniband/hw/ehca/ipz_pt_fn.c | 22 +----- drivers/net/cxgb3/cxgb3_defs.h | 2 drivers/net/cxgb3/cxgb3_offload.c | 31 --------- drivers/net/cxgb3/l2t.c | 4 - drivers/net/cxgb4/cxgb4.h | 3 drivers/net/cxgb4/cxgb4_main.c | 37 +---------- drivers/net/cxgb4/l2t.c | 2 drivers/scsi/cxgb3i/cxgb3i_ddp.c | 12 +-- drivers/scsi/cxgb3i/cxgb3i_ddp.h | 26 ------- drivers/scsi/cxgb3i/cxgb3i_offload.c | 6 - fs/ext4/super.c | 21 +----- fs/file.c | 109 ++++----------------------------- include/linux/mm.h | 31 +++++++++ include/linux/vmalloc.h | 1 kernel/cgroup.c | 47 +------------- kernel/relay.c | 35 ---------- mm/nommu.c | 6 + mm/util.c | 104 +++++++++++++++++++++++++++++++ mm/vmalloc.c | 14 ++++ 19 files changed, 207 insertions(+), 306 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |