X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=libcfs%2Flibcfs%2Flinux%2Flinux-mem.c;h=05c160d619c01018dc69dacbb285e077fde5f468;hp=cc18de2d90459ce6bf9829498d2c589281d23dfe;hb=e270894db5e357193a7dfd0f998dba37e68c1fc3;hpb=35c686077094fb92a1f15368e27d5f625c27c4f7 diff --git a/libcfs/libcfs/linux/linux-mem.c b/libcfs/libcfs/linux/linux-mem.c index cc18de2..05c160d 100644 --- a/libcfs/libcfs/linux/linux-mem.c +++ b/libcfs/libcfs/linux/linux-mem.c @@ -45,14 +45,8 @@ void * cfs_cpt_malloc(struct cfs_cpt_table *cptab, int cpt, size_t nr_bytes, unsigned int flags) { - void *ptr; - - ptr = kmalloc_node(nr_bytes, flags, - cfs_cpt_spread_node(cptab, cpt)); - if (ptr != NULL && (flags & __GFP_ZERO) != 0) - memset(ptr, 0, nr_bytes); - - return ptr; + return kmalloc_node(nr_bytes, flags, + cfs_cpt_spread_node(cptab, cpt)); } EXPORT_SYMBOL(cfs_cpt_malloc);