Re: [PATCH 3/14] drivers/vhost/vhost.c: delete double assignment

2010-10-26 Thread Michael S. Tsirkin
On Tue, Oct 26, 2010 at 12:25:32PM +0200, Julia Lawall wrote: > From: Julia Lawall > > Delete successive assignments to the same location. > > A simplified version of the semantic match that finds this problem is as > follows: (http://coccinelle.lip6.fr/) > > // > @@ > expression i; > @@ > >

[PATCH 3/14] drivers/vhost/vhost.c: delete double assignment

2010-10-26 Thread Julia Lawall
From: Julia Lawall Delete successive assignments to the same location. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression i; @@ *i = ...; i = ...; // Signed-off-by: Julia Lawall --- drivers/vhost/vhost.c |1