On Tue, Sep 11, 2012 at 10:09 AM, Christian K?nig <deathsimple at vodafone.de> wrote: > The end offset is exclusive not inclusive. > > Signed-off-by: Christian K?nig <deathsimple at vodafone.de>
Reviewed-by: Jerome Glisse <jglisse at redhat.com> > --- > drivers/gpu/drm/radeon/radeon_gart.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/radeon/radeon_gart.c > b/drivers/gpu/drm/radeon/radeon_gart.c > index d7bd46b..614e31a 100644 > --- a/drivers/gpu/drm/radeon/radeon_gart.c > +++ b/drivers/gpu/drm/radeon/radeon_gart.c > @@ -732,7 +732,7 @@ int radeon_vm_bo_add(struct radeon_device *rdev, > head = &vm->va; > last_offset = 0; > list_for_each_entry(tmp, &vm->va, vm_list) { > - if (bo_va->soffset >= last_offset && bo_va->eoffset < > tmp->soffset) { > + if (bo_va->soffset >= last_offset && bo_va->eoffset <= > tmp->soffset) { > /* bo can be added before this one */ > break; > } > -- > 1.7.9.5 > > _______________________________________________ > dri-devel mailing list > dri-devel at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/dri-devel