From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dan Carpenter Date: Mon, 29 Mar 2010 08:11:34 +0000 Subject: Re: [patch v2] batman: cleanup: change test for end of array Message-Id: <20100329081134.GD5069@bicker> List-Id: References: <20100328131335.GY5069@bicker> In-Reply-To: <20100328131335.GY5069@bicker> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: kernel-janitors@vger.kernel.org On Mon, Mar 29, 2010 at 03:12:23PM +0800, Marek Lindner wrote: > On Sunday 28 March 2010 21:13:35 Dan Carpenter wrote: > > @@ -43,10 +43,7 @@ static struct device_client *device_client_hash[256]; > > > > - for (i = 0; i < 256; i++) > > - device_client_hash[i] = NULL; > > + memset(&device_client_hash, 0, sizeof(device_client_hash)); > > I might be mistaken but it looks like the "&" is wrong here. Shouldn't it be: > memset(device_client_hash, 0, sizeof(device_client_hash)); Either way works. You can easily write a small test program to verify. :) regards, dan carpenter > > Cheers, > Marek