[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20100627130717M.fujita.tomonori@lab.ntt.co.jp>
Date: Sun, 27 Jun 2010 13:20:45 +0900
From: FUJITA Tomonori <fujita.tomonori@....ntt.co.jp>
To: mattst88@...il.com
Cc: fujita.tomonori@....ntt.co.jp, linux-kernel@...r.kernel.org,
linux-alpha@...r.kernel.org, rth@...ddle.net,
ink@...assic.park.msu.ru, mcree@...on.net.nz,
jbarnes@...tuousgeek.org, linux-pci@...r.kernel.org,
dri-devel@...ts.freedesktop.org, airlied@...il.com,
alexdeucher@...il.com, jglisse@...hat.com
Subject: Re: Problems with alpha/pci + radeon/ttm
On Thu, 24 Jun 2010 10:53:52 -0400
Matt Turner <mattst88@...il.com> wrote:
> > Seems that the IOMMU can't find 128 pages. It's likely due to:
> >
> > - out of the IOMMU space (possibly someone doesn't free the IOMMU
> > space).
> >
> > or
> >
> > - the mapping parameters (such as align) aren't appropriate so the
> > IOMMU can't find space.
> >
> >
> >> Is this the cause of the bug we're seeing in the report [1]?
> >>
> >> Anyone know what's going wrong here?
> >
> >
> > I've attached a patch to print the debug info about the mapping
> > parameters.
> >
> >
> > diff --git a/arch/alpha/kernel/pci_iommu.c b/arch/alpha/kernel/pci_iommu.c
> > index d1dbd9a..17cf0d8 100644
> > --- a/arch/alpha/kernel/pci_iommu.c
> > +++ b/arch/alpha/kernel/pci_iommu.c
> > @@ -187,6 +187,10 @@ iommu_arena_alloc(struct device *dev, struct pci_iommu_arena *arena, long n,
> > /* Search for N empty ptes */
> > ptes = arena->ptes;
> > mask = max(align, arena->align_entry) - 1;
> > +
> > + printk("%s: %p, %p, %d, %ld, %lx, %u\n", __func__, dev, arena, arena->size,
> > + n, mask, align);
> > +
> > p = iommu_arena_find_pages(dev, arena, n, mask);
> > if (p < 0) {
> > spin_unlock_irqrestore(&arena->lock, flags);
>
> Using this patch, I log the attached output.
Your system has 1GB iommu address space. I guess that it's enough for
KSM?
The parameters in the log looks good. But you got this log before you
started X?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists