On Mon, 2008-08-04 at 19:02 +1000, Nick Piggin wrote:What I may be able to do is create a file, then hand it to my driver and close the fd. That would avoid any ulimit or low-fd issues. It seems fairly ugly to map the object to user space just to get page pointers; the expense of constructing that mapping will be entirely wasted most of the time. Would it be imprudent to use pagecache_write_begin/pagecache_write_end here? For shmem, that appears to point at functions which will do what I need. Of course, it will cause extra page-outs as each page will be marked dirty, even if the GPU never writes them.=20 While shmem offers good semantics for graphics objects, it doesn't seem like it is unique in any way, and it seems like it should be possible to do this operation on any file system. There are some unique aspects to this operation which don't really have parallels in other environments. I'm doing memory management for a co-processor which uses the same pages as the CPU. So, I need to allocate many pages that are just handed to the GPU and never used by the CPU at all. Most rendering buffers are of this form -- if you ever need to access them from the CPU, you've done something terribly wrong. Then there are textures which are constructed by the CPU (usually) and handed over to the GPU for the entire lifetime of the application. These are numerous enough that we need to be able to page them to disk; the kernel driver will fault them back in when the GPU needs them again. On the other hand, there are command and vertex buffers which are constructed in user space and passed to the GPU for execution. These operate just like any bulk-data transfer, and, in fact, I'm using the pwrite API to transmit this data. For these buffers, the entire key is to make sure you respect the various caches to keep them from getting trashed. --=20 keith.packard@intel.com
| Peter Zijlstra | [RFC][PATCH 7/7] lockdep: spin_lock_nest_lock() |
| Gabriel C | Re: 2.6.24-rc2-mm1 |
| Andrew Morton | Re: [PATCH 2.6.21] cramfs: add cramfs Linear XIP |
| Jiri Kosina | Re: 2.6.21-rc5-mm4 |
git: | |
| Gregory Haskins | [RFC PATCH 00/17] virtual-bus |
| Jarek Poplawski | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| David Miller | [GIT]: Networking |
| Gerrit Renker | [PATCH 0/37] dccp: Feature negotiation - last call for comments |
