From patchwork Thu Aug 2 11:28:30 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: zhong jiang X-Patchwork-Id: 10553505 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5D86E13BF for ; Thu, 2 Aug 2018 11:40:17 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 46CFA2BCD3 for ; Thu, 2 Aug 2018 11:40:17 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 393EC2BCDB; Thu, 2 Aug 2018 11:40:17 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B4FA72BCD3 for ; Thu, 2 Aug 2018 11:40:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732242AbeHBNbB (ORCPT ); Thu, 2 Aug 2018 09:31:01 -0400 Received: from szxga05-in.huawei.com ([45.249.212.191]:10221 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1732173AbeHBNbB (ORCPT ); Thu, 2 Aug 2018 09:31:01 -0400 Received: from DGGEMS404-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id E87E9C5255744; Thu, 2 Aug 2018 19:40:10 +0800 (CST) Received: from linux-ibm.site (10.175.102.37) by DGGEMS404-HUB.china.huawei.com (10.3.19.204) with Microsoft SMTP Server id 14.3.399.0; Thu, 2 Aug 2018 19:40:11 +0800 From: zhong jiang To: , , CC: , , , Subject: [PATCH v2 0/4] Use dma_zalloc_coherent and kvcalloc to replace open code Date: Thu, 2 Aug 2018 19:28:30 +0800 Message-ID: <1533209314-1074-1-git-send-email-zhongjiang@huawei.com> X-Mailer: git-send-email 1.7.12.4 MIME-Version: 1.0 X-Originating-IP: [10.175.102.37] X-CFilter-Loop: Reflected Sender: linux-scsi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-scsi@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP v1->v2: According to Andy and Joe suggestions. [patch 1/4] get rid of unnessary parens and use kvcalloc and kvfree to replace the vmalloc and vfree. [patch 2/4] modify the changelog as Andy's suggestion. [patch 3/4] replace vmalloc and vfree by using kvcalloc adn kvfree. [patch 4/4] do nothing. just add Andy's review-by. zhong jiang (4): driver/scsi/fnic/fnic_trace: Use kvcalloc instead of vmalloc+memset drivers/scsi/dpt_i2o: Use dma_zalloc_coherent to repalce dma_alloc_coherent+memset drivers/scsi/snic/snic_trc: Use kvcalloc instead of vmalloc+memset drivers/scsi/mvsas/mv_init: Use dma_zalloc_coherent to replace dma_alloc_coherent+memset drivers/scsi/dpt_i2o.c | 12 ++++-------- drivers/scsi/fnic/fnic_trace.c | 7 +++---- drivers/scsi/mvsas/mv_init.c | 12 ++++-------- drivers/scsi/snic/snic_trc.c | 7 +++---- 4 files changed, 14 insertions(+), 24 deletions(-)