Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753093AbdCMPkO (ORCPT ); Mon, 13 Mar 2017 11:40:14 -0400 Received: from mail-it0-f42.google.com ([209.85.214.42]:38671 "EHLO mail-it0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751612AbdCMPkD (ORCPT ); Mon, 13 Mar 2017 11:40:03 -0400 MIME-Version: 1.0 In-Reply-To: References: <20170313105421.GA32342@SEL-JYOUN-D1> <20170313115129.GC4136@mwanda> From: DaeSeok Youn Date: Tue, 14 Mar 2017 00:40:01 +0900 Message-ID: Subject: Re: [PATCH] staging: atomisp: use k{v}zalloc instead of k{v}alloc and memset To: Dan Carpenter Cc: mchehab@kernel.org, devel , Greg KH , kernel-janitors , linux-kernel , alan@linux.intel.com, linux-media@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1067 Lines: 34 2017-03-13 23:07 GMT+09:00 DaeSeok Youn : > 2017-03-13 20:51 GMT+09:00 Dan Carpenter : >> On Mon, Mar 13, 2017 at 07:54:21PM +0900, Daeseok Youn wrote: >>> If the atomisp_kernel_zalloc() has "true" as a second parameter, it >>> tries to allocate zeroing memory from kmalloc(vmalloc) and memset. >>> But using kzalloc is rather than kmalloc followed by memset with 0. >>> (vzalloc is for same reason with kzalloc) >>> >>> And also atomisp_kernel_malloc() can be used with >>> atomisp_kernel_zalloc(, false); >>> >> >> We should just change all the callers to kvmalloc() and kvzmalloc(). > ok. I will try to change all the callers to kvmalloc() and kvzalloc(). The kvmalloc() and kvzalloc() are not ready to use in staging-testing branch on staging tree. If the kvmalloc and kvzalloc are available to use, I will replace atomisp_kernel_malloc() and atomisp_kernel_zalloc() with kvmalloc() and kvzalloc(). Thanks. Regards, Daeseok Youn. > > Thanks. > Regards, > Daeseok Youn >> >> regards, >> dan carpenter >>