Am 13.02.2014 um 02:51 hat Benoît Canet geschrieben: > Signed-off-by: Benoit Canet <ben...@irqsave.net> > --- > block.c | 6 +----- > 1 file changed, 1 insertion(+), 5 deletions(-)
Should be [PATCH v3] in the subject line. > diff --git a/block.c b/block.c > index 70d7f35..d9553ba 100644 > --- a/block.c > +++ b/block.c > @@ -5419,11 +5419,7 @@ bool bdrv_is_first_non_filter(BlockDriverState > *candidate) > QTAILQ_FOREACH(bs, &bdrv_states, device_list) { > bool perm; > > - if (!bs->file) { > - continue; > - } > - > - perm = bdrv_recurse_is_first_non_filter(bs->file, candidate); > + perm = bdrv_recurse_is_first_non_filter(bs, candidate); > > /* candidate is the first non filter */ > if (perm) { So we're back to my patch, just with different author? I thought you said something was broken with it? Kevin