From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753915AbbBGKFb (ORCPT ); Sat, 7 Feb 2015 05:05:31 -0500 Received: from userp1040.oracle.com ([156.151.31.81]:35931 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751229AbbBGKF2 (ORCPT ); Sat, 7 Feb 2015 05:05:28 -0500 Date: Sat, 7 Feb 2015 12:33:23 +0300 From: Dan Carpenter To: SF Markus Elfring Cc: "James E. J. Bottomley" , QLogic-Storage-Upstream@qlogic.com, linux-scsi@vger.kernel.org, LKML , kernel-janitors@vger.kernel.org, Julia Lawall Subject: Re: [PATCH 2/4] SCSI-QLA4...: Less function calls in qla4xxx_is_session_exists() after error detection Message-ID: <20150207093322.GA5206@mwanda> References: <530CD2C4.4050903@users.sourceforge.net> <530CF8FF.8080600@users.sourceforge.net> <530DD06F.4090703@users.sourceforge.net> <5317A59D.4@users.sourceforge.net> <54D53BE4.7010807@users.sourceforge.net> <54D53CF1.8050009@users.sourceforge.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <54D53CF1.8050009@users.sourceforge.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-Source-IP: ucsinet21.oracle.com [156.151.31.93] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Feb 06, 2015 at 11:15:13PM +0100, SF Markus Elfring wrote: > diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c > index 2a00fd3..a7ca479 100644 > --- a/drivers/scsi/qla4xxx/ql4_os.c > +++ b/drivers/scsi/qla4xxx/ql4_os.c > @@ -6327,17 +6327,15 @@ static int qla4xxx_is_session_exists(struct scsi_qla_host *ha, > uint32_t *index) > { > struct ddb_entry *ddb_entry; > - struct ql4_tuple_ddb *fw_tddb = NULL; > - struct ql4_tuple_ddb *tmp_tddb = NULL; > int idx; > int ret = QLA_ERROR; > + struct ql4_tuple_ddb *tmp_tddb; > + struct ql4_tuple_ddb *fw_tddb = vzalloc(sizeof(*fw_tddb)); > Don't do allocations in the initializers. Same for patches 3 and 4 as well. regards, dan carpenter