* panic in iommu_is_span_boundary with 32-bit kernel on c3750
@ 2008-03-14 23:31 John David Anglin
2008-03-15 7:05 ` Grant Grundler
2008-03-15 12:01 ` rubisher
0 siblings, 2 replies; 5+ messages in thread
From: John David Anglin @ 2008-03-14 23:31 UTC (permalink / raw)
To: linux-parisc
Kyle's tree (vmlinux-2.6.25-rc4-01283-gef95dd8) panics on my c3750 at
iommu_is_span_boundary+0x28. Looking at the code, I see the panic is
caused by a call with r23 = 0. The call is from sba_alloc_range. The
actual call appears to be from an inlined copy of sba_search_bitmap.
It seems that boundary_size must be 0.
Should there be a check in sba_search_bitmap, or is the problem
deeper in dma_get_seg_boundary?
Dave
--
J. David Anglin dave.anglin@nrc-cnrc.gc.ca
National Research Council of Canada (613) 990-0752 (FAX: 952-6602)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: panic in iommu_is_span_boundary with 32-bit kernel on c3750
2008-03-14 23:31 panic in iommu_is_span_boundary with 32-bit kernel on c3750 John David Anglin
@ 2008-03-15 7:05 ` Grant Grundler
2008-03-15 7:08 ` Grant Grundler
2008-03-15 12:01 ` rubisher
1 sibling, 1 reply; 5+ messages in thread
From: Grant Grundler @ 2008-03-15 7:05 UTC (permalink / raw)
To: John David Anglin; +Cc: linux-parisc
On Fri, Mar 14, 2008 at 07:31:54PM -0400, John David Anglin wrote:
> Kyle's tree (vmlinux-2.6.25-rc4-01283-gef95dd8) panics on my c3750 at
> iommu_is_span_boundary+0x28.
32-bit or 64-bit kernel?
> Looking at the code, I see the panic is
> caused by a call with r23 = 0. The call is from sba_alloc_range. The
> actual call appears to be from an inlined copy of sba_search_bitmap.
> It seems that boundary_size must be 0.
>
> Should there be a check in sba_search_bitmap, or is the problem
> deeper in dma_get_seg_boundary?
I don't expect a deeper problem given this definition:
static inline unsigned long dma_get_seg_boundary(struct device *dev)
{
return dev->dma_parms ?
dev->dma_parms->segment_boundary_mask : 0xffffffff;
}
I'm not sure how boundary_size could ever be zero.
Could this code generate a zero value?
boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1, 1 << IOVP_SHIFT);
boundary_size >>= IOVP_SHIFT;
I thought ALIGN() would "ROUND_UP()". So it should always be at least 1
returned.
But in the 32-bit kernel ~0 + 1 == 0 (with overflow).
Will the ALIGN do the right thing in that case?
It looks like it will return 0 because of overflow and I think the
intent is "4GB >> IOVP_SHIFT" (so 20 bits, ie 1MB).
Maybe we want dma_get_seg_boundary() to deal with the ALIGN and other stuff
so it just returns a PAGE_SIZE count?
A simple test before assigning boundary_size would be to check
"dev->dma_parms". If dev->dma_parms is zero, just return 1 << 20
and see if that works for you.
But I'm pretty tired right now (long week) and I can't wrap my brain
around the bit flipping. Would be good if someone else confirmed.
cheers,
grant
>
> Dave
> --
> J. David Anglin dave.anglin@nrc-cnrc.gc.ca
> National Research Council of Canada (613) 990-0752 (FAX: 952-6602)
> --
> To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: panic in iommu_is_span_boundary with 32-bit kernel on c3750
2008-03-15 7:05 ` Grant Grundler
@ 2008-03-15 7:08 ` Grant Grundler
0 siblings, 0 replies; 5+ messages in thread
From: Grant Grundler @ 2008-03-15 7:08 UTC (permalink / raw)
To: Grant Grundler; +Cc: John David Anglin, linux-parisc
On Sat, Mar 15, 2008 at 01:05:48AM -0600, Grant Grundler wrote:
> On Fri, Mar 14, 2008 at 07:31:54PM -0400, John David Anglin wrote:
> > Kyle's tree (vmlinux-2.6.25-rc4-01283-gef95dd8) panics on my c3750 at
> > iommu_is_span_boundary+0x28.
>
> 32-bit or 64-bit kernel?
doh...nm. I finally read the whole subject line (32-bit). :)
Please just ignore that and focus on the rest of the email.
grant
>
> > Looking at the code, I see the panic is
> > caused by a call with r23 = 0. The call is from sba_alloc_range. The
> > actual call appears to be from an inlined copy of sba_search_bitmap.
> > It seems that boundary_size must be 0.
> >
> > Should there be a check in sba_search_bitmap, or is the problem
> > deeper in dma_get_seg_boundary?
>
> I don't expect a deeper problem given this definition:
> static inline unsigned long dma_get_seg_boundary(struct device *dev)
> {
> return dev->dma_parms ?
> dev->dma_parms->segment_boundary_mask : 0xffffffff;
> }
>
> I'm not sure how boundary_size could ever be zero.
> Could this code generate a zero value?
>
> boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1, 1 << IOVP_SHIFT);
> boundary_size >>= IOVP_SHIFT;
>
> I thought ALIGN() would "ROUND_UP()". So it should always be at least 1
> returned.
>
> But in the 32-bit kernel ~0 + 1 == 0 (with overflow).
> Will the ALIGN do the right thing in that case?
> It looks like it will return 0 because of overflow and I think the
> intent is "4GB >> IOVP_SHIFT" (so 20 bits, ie 1MB).
> Maybe we want dma_get_seg_boundary() to deal with the ALIGN and other stuff
> so it just returns a PAGE_SIZE count?
>
> A simple test before assigning boundary_size would be to check
> "dev->dma_parms". If dev->dma_parms is zero, just return 1 << 20
> and see if that works for you.
>
> But I'm pretty tired right now (long week) and I can't wrap my brain
> around the bit flipping. Would be good if someone else confirmed.
>
> cheers,
> grant
>
> >
> > Dave
> > --
> > J. David Anglin dave.anglin@nrc-cnrc.gc.ca
> > National Research Council of Canada (613) 990-0752 (FAX: 952-6602)
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: panic in iommu_is_span_boundary with 32-bit kernel on c3750
2008-03-14 23:31 panic in iommu_is_span_boundary with 32-bit kernel on c3750 John David Anglin
2008-03-15 7:05 ` Grant Grundler
@ 2008-03-15 12:01 ` rubisher
2008-03-16 14:29 ` John David Anglin
1 sibling, 1 reply; 5+ messages in thread
From: rubisher @ 2008-03-15 12:01 UTC (permalink / raw)
To: John David Anglin; +Cc: linux-parisc
John David Anglin wrote:
> Kyle's tree (vmlinux-2.6.25-rc4-01283-gef95dd8) panics on my c3750 at
> iommu_is_span_boundary+0x28. Looking at the code, I see the panic is
> caused by a call with r23 = 0. The call is from sba_alloc_range. The
> actual call appears to be from an inlined copy of sba_search_bitmap.
> It seems that boundary_size must be 0.
>
> Should there be a check in sba_search_bitmap, or is the problem
> deeper in dma_get_seg_boundary?
>
> Dave
Yes Kyle tree doesn't yet include the latest patch of Fujita Tomonori?
Here it was:
Really sorry about the bug. Can you try the following patch? It's on
the top of the patchset.
Thanks,
diff --git a/drivers/parisc/ccio-dma.c b/drivers/parisc/ccio-dma.c
index 2f3b364..d0855a1 100644
--- a/drivers/parisc/ccio-dma.c
+++ b/drivers/parisc/ccio-dma.c
@@ -366,8 +366,8 @@ ccio_alloc_range(struct ioc *ioc, struct device *dev, size_t size)
** ggg sacrifices another 710 to the computer gods.
*/
- boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1, 1 << IOVP_SHIFT);
- boundary_size >>= IOVP_SHIFT;
+ boundary_size = ALIGN((unsigned long long)dma_get_seg_boundary(dev) + 1,
+ 1ULL << IOVP_SHIFT) >> IOVP_SHIFT;
if (pages_needed <= 8) {
/*
diff --git a/drivers/parisc/sba_iommu.c b/drivers/parisc/sba_iommu.c
index e834127..bdbe780 100644
--- a/drivers/parisc/sba_iommu.c
+++ b/drivers/parisc/sba_iommu.c
@@ -341,8 +341,8 @@ sba_search_bitmap(struct ioc *ioc, struct device *dev,
unsigned long shift;
int ret;
- boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1, 1 << IOVP_SHIFT);
- boundary_size >>= IOVP_SHIFT;
+ boundary_size = ALIGN((unsigned long long)dma_get_seg_boundary(dev) + 1,
+ 1ULL << IOVP_SHIFT) >> IOVP_SHIFT;
#if defined(ZX1_SUPPORT)
BUG_ON(ioc->ibase & ~IOVP_MASK);
--
To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
It works to me on c110, d380, b2k (32bit kernels) and b2k 64bit kernel.
Hth,
r.
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: panic in iommu_is_span_boundary with 32-bit kernel on c3750
2008-03-15 12:01 ` rubisher
@ 2008-03-16 14:29 ` John David Anglin
0 siblings, 0 replies; 5+ messages in thread
From: John David Anglin @ 2008-03-16 14:29 UTC (permalink / raw)
To: rubisher; +Cc: linux-parisc
> Really sorry about the bug. Can you try the following patch? It's on
> the top of the patchset.
Thanks, this fixed the panic.
However, there's still something wrong with this kernel regarding user
authetication with ssh/sshd/pam:
Mar 16 09:55:06 hiauly6 sshd[11861]: Invalid user xxxx from 76.66.48.108
Mar 16 09:55:10 hiauly6 sshd[11864]: pam_unix(ssh:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=bas15-ottawa23-1279406188.dsl.bell.ca user=xxxx
Mar 16 09:55:12 hiauly6 sshd[11861]: error: PAM: Authentication failure for illegal user xxxx from bas15-ottawa23-1279406188.dsl.bell.ca
Mar 16 09:55:12 hiauly6 sshd[11861]: Failed keyboard-interactive/pam for invalid user xxxx from 76.66.48.108 port 49155 ssh2
Mar 16 09:55:19 hiauly6 sshd[11867]: pam_unix(ssh:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=bas15-ottawa23-1279406188.dsl.bell.ca user=xxxx
Mar 16 09:55:21 hiauly6 sshd[11861]: error: PAM: Authentication failure for illegal user xxxx from bas15-ottawa23-1279406188.dsl.bell.ca
Mar 16 09:55:21 hiauly6 sshd[11861]: Failed keyboard-interactive/pam for invalid user xxxx from 76.66.48.108 port 49155 ssh2
The actual user name has been changed to `xxxx', but it's correct.
Don't know why ssh thought the user was invalid the first time.
Started ssh again from remote node:
Mar 16 09:55:42 hiauly6 sshd[11900]: Accepted keyboard-interactive/pam for xxxx from 76.66.48.108 port 49156 ssh2
Mar 16 09:55:42 hiauly6 sshd[11908]: pam_unix(ssh:session): session opened for user xxxx by (uid=0)
With a previous 2.6.25 kernel, I actually ended up logged into a different
user account a couple of times. This never happens with 2.6.22.
Dave
--
J. David Anglin dave.anglin@nrc-cnrc.gc.ca
National Research Council of Canada (613) 990-0752 (FAX: 952-6602)
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-03-16 14:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-14 23:31 panic in iommu_is_span_boundary with 32-bit kernel on c3750 John David Anglin
2008-03-15 7:05 ` Grant Grundler
2008-03-15 7:08 ` Grant Grundler
2008-03-15 12:01 ` rubisher
2008-03-16 14:29 ` John David Anglin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox