On Wed, 2015-02-25 at 07:40 +1100, Benjamin Herrenschmidt wrote: > On Tue, 2015-02-24 at 14:34 -0600, Scott Wood wrote: > > On Fri, 2015-02-20 at 19:35 +1100, Benjamin Herrenschmidt wrote: > > > static u64 dma_direct_get_required_mask(struct device *dev) > > > diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c > > > index f146ef0..a7f15e2 100644 > > > --- a/arch/powerpc/mm/mem.c > > > +++ b/arch/powerpc/mm/mem.c > > > @@ -277,6 +277,11 @@ int dma_pfn_limit_to_zone(u64 pfn_limit) > > > return -EPERM; > > > } > > > > > > +u64 dma_get_zone_limit(int zone) > > > +{ > > > + return max_zone_pfns[zone] << PAGE_SHIFT; > > > +} > > > > If you must do this in terms of bytes rather than pfn, cast to u64 > > before shifting -- and even then the result will be PAGE_SIZE - 1 too > > small. > > Do we have RAM above what a unsigned long can hold ? I think I'll just > make it a pfn and respin...
Yes, we can have over 4 GiB RAM on 32-bit. -Scott _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev