From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dan Carpenter Date: Sat, 07 Feb 2015 09:33:23 +0000 Subject: Re: [PATCH 2/4] SCSI-QLA4...: Less function calls in qla4xxx_is_session_exists() after error detecti Message-Id: <20150207093322.GA5206@mwanda> List-Id: 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> In-Reply-To: <54D53CF1.8050009@users.sourceforge.net> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 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 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