On Fri, May 20, 2005 at 11:12:54AM -0700, Shawn Jin wrote: > > My recommendation - don't do this. Why do you need to allocate this > > big chunk of consistent memory in the first place? You can do DMA > > _without_ allocating "consistent" memory. In fact, this is how > > virtually all devices work in Linux. For more info about DMA API - > > look at Documentation/DMA-API.txt. > > The driver stack we've been developing (already 4.0) uses consistent > memory a lot for DMA. The stack is for many kinds of high performance > storage IO e.g. iSCSI, FC. It works fine on 2.4.x because there is no > such 2MB consistent pool limitation.
Why are you using consistent memory for your DMA buffers? > > Technically, you can make consistent pool bigger, if you really insist > > on using this approach. > > I want to understand the motivation and the rationale of choosing > 'consistent_pte' on 2.6.x, what impact there would be to increase the > consistent pool, and so on. Some pointers to articles, posts are more > helpful. The rationale on moving to the new implementation in 2.6 was to fix a critical bug. The bug could not be fixed with a band-aid solution, but required an allocation system with different semantics. After considering a few possibilities the basic framework from ARM was selected. The bug that was fixed was the inability to allocate consistent memory from an interrupt context. This is allowed by the PCI DMA API and the more general DMA API and is used by many drivers. In 2.4, these drivers would simply BUG() on PPC4xx/8xx. The difference with this implementation is that it doesn't allow for arbitrarily huge consistent allocations by default. However, I carefully placed a comment at the top to point people to the advanced setup menu where they can tune the consistent pool to be larger than the 2MB default. You simply have to understand the memory map of your board port when setting this option. You can break things as with other advanced setup menu options. -Matt