From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751908AbbHGILH (ORCPT ); Fri, 7 Aug 2015 04:11:07 -0400 Received: from mailout1.w1.samsung.com ([210.118.77.11]:21615 "EHLO mailout1.w1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1422633AbbHGIAl (ORCPT ); Fri, 7 Aug 2015 04:00:41 -0400 X-AuditID: cbfec7f4-f79c56d0000012ee-8f-55c465a796fc From: Andrzej Hajda To: Hannes Reinecke Cc: Andrzej Hajda , Bartlomiej Zolnierkiewicz , Marek Szyprowski , linux-kernel@vger.kernel.org, "James E.J. Bottomley" , linux-scsi@vger.kernel.org Subject: [PATCH 18/31] scsi/aic7xxx: use kmemdup rather than duplicating its implementation Date: Fri, 07 Aug 2015 09:59:24 +0200 Message-id: <1438934377-4922-19-git-send-email-a.hajda@samsung.com> X-Mailer: git-send-email 1.9.1 In-reply-to: <1438934377-4922-1-git-send-email-a.hajda@samsung.com> References: <1438934377-4922-1-git-send-email-a.hajda@samsung.com> X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFuplluLIzCtJLcpLzFFi42I5/e/4Fd3lqUdCDc4v0bG4te4cq8XGGetZ LRa82ctm8X/9bRaLy7vmsFl0X9/BZrH2yF12B3aPwz9+MHv0bVnF6LF+y1UWj8+b5AJYorhs UlJzMstSi/TtErgyNvxVKdjHW/G/5ShzA+Nu7i5GTg4JAROJ569eMEPYYhIX7q1nA7GFBJYy Skw+XtzFyAVkNzFJ9E/6zQiSYBPQlPi7+SZYkYiAssTr7mcsIEXMAj8YJV6deswKkhAWiJVo 7vwDNJWDg0VAVaL7lDNImFfAWWJj1z+oZXISJ49NBivnBIqv7J7JCrHYSeJN3wXmCYy8CxgZ VjGKppYmFxQnpeca6hUn5haX5qXrJefnbmKEBNKXHYyLj1kdYhTgYFTi4U34dzhUiDWxrLgy 9xCjBAezkgjvQ32gEG9KYmVValF+fFFpTmrxIUZpDhYlcd65u96HCAmkJ5akZqemFqQWwWSZ ODilGhjbWTJ2fg46GSV36BLDFMfQmKxS1jeTZlW9PRS1ULpyvYDc74UXHy5nEs4u1oj62jbf 9lf2ap7lrMKXZO2fG1jp/WY0FbyrOmnTi+CP849VW99UywrPOHVu+Stp7emz//39sWvZHH2u vJg/dz9n2a8M9FBfbftPMunpGYGG86LZwdUreB6ob/+ixFKckWioxVxUnAgAhv9mESACAAA= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The patch was generated using fixed coccinelle semantic patch scripts/coccinelle/api/memdup.cocci [1]. [1]: http://permalink.gmane.org/gmane.linux.kernel/2014320 Signed-off-by: Andrzej Hajda --- drivers/scsi/aic7xxx/aic79xx_core.c | 4 ++-- drivers/scsi/aic7xxx/aic7xxx_core.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/aic7xxx/aic79xx_core.c b/drivers/scsi/aic7xxx/aic79xx_core.c index 109e2c9..8592448 100644 --- a/drivers/scsi/aic7xxx/aic79xx_core.c +++ b/drivers/scsi/aic7xxx/aic79xx_core.c @@ -9494,10 +9494,10 @@ ahd_loadseq(struct ahd_softc *ahd) if (cs_count != 0) { cs_count *= sizeof(struct cs); - ahd->critical_sections = kmalloc(cs_count, GFP_ATOMIC); + ahd->critical_sections = kmemdup(cs_table, cs_count, + GFP_ATOMIC); if (ahd->critical_sections == NULL) panic("ahd_loadseq: Could not malloc"); - memcpy(ahd->critical_sections, cs_table, cs_count); } ahd_outb(ahd, SEQCTL0, PERRORDIS|FAILDIS|FASTMODE); diff --git a/drivers/scsi/aic7xxx/aic7xxx_core.c b/drivers/scsi/aic7xxx/aic7xxx_core.c index c4829d8..3178730 100644 --- a/drivers/scsi/aic7xxx/aic7xxx_core.c +++ b/drivers/scsi/aic7xxx/aic7xxx_core.c @@ -6940,10 +6940,10 @@ ahc_loadseq(struct ahc_softc *ahc) if (cs_count != 0) { cs_count *= sizeof(struct cs); - ahc->critical_sections = kmalloc(cs_count, GFP_ATOMIC); + ahc->critical_sections = kmemdup(cs_table, cs_count, + GFP_ATOMIC); if (ahc->critical_sections == NULL) panic("ahc_loadseq: Could not malloc"); - memcpy(ahc->critical_sections, cs_table, cs_count); } ahc_outb(ahc, SEQCTL, PERRORDIS|FAILDIS|FASTMODE); -- 1.9.1