On Mon, Dec 14, 2015 at 03:21:24PM +0000, Marciniszyn, Mike wrote: > > @@ -10129,6 +10129,9 @@ static void init_qos(struct hfi1_devdata *dd, > > u32 first_ctxt) > > if (num_vls * qpns_per_vl > dd->chip_rcv_contexts) > > goto bail; > > rsmmap = kcalloc(NUM_MAP_REGS, sizeof(u64), GFP_KERNEL); > > + if (!rsmmap) > > + goto bail; > > + > > I checked out a linux-next remote at the next-20151214 tag. > > The allocation method is clearly kmalloc_array() not kcalloc(). > > Where are you seeing the kcalloc()? > > While it is tempting to allocate and zero, there is a chip rev specific difference. > x = kmalloc_array(...) if(!x) ... memset(x...) should be equivalent to kcalloc - include/linux/slab.h static inline void *kcalloc(size_t n, size_t size, gfp_t flags) { return kmalloc_array(n, size, flags | __GFP_ZERO); } if the assumption that this is equvalent is wrong I appologize the intent was simply API consolidation as the patch description stated. thx! hofrta _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel