Hello, I would like to be CCed personally on responses, please.
I am in the process of porting a driver from kernel 2.4 to 2.6. I noticed that when I switched from using map_user_kiobuf() to get_user_pages() that get_user_pages() can and does sometimes provide only a partial mapping, returning with the number of pages it succeeded on instead of an error code. This happens on both 2.6.8 and 2.6.11.3. The early return only happens in one direction (from memory on a PCI card to a user-allocated buffer) and not the reverse. It is due to statements such as the following in get_user_pages() if (!vma || (vma->vm_flags & VM_IO) || !(flags & vma->vm_flags)) return i ? : -EFAULT; ... and others in the function. My question is: is this an expected/normal behavior that I should code to, splitting the operation I want to complete into sections, or does it indicate a system config problem or bug elsewhere in my code that I need to fix? I have looked at the source to the function in mm/memory.c and researched on the web but haven't been able to figure it out. It appears that the same situation exists in the 2.4 versions of get_user_pages() but for some reason I never experienced it although I was I using the function via map_user_kiobuf(). The user's buffersize is about 8MB which doesn't seem exorbitant. Is it? I am concerned that if I code to the incomplete result, I will have to accept the degenerate case where get_user_pages() only handles one page at a time and I will have to perform 2026 DMA operations instead of the single one I achieve in 2.4, resulting in performance issues. I am puzzled that the operation works in one direction but not the other, and fails about halfway through (always at 1015 pages out of 2026), regardles of how much memory I have in my system (controlled via the mem= boot option, the system has 2.0GB of physical RAM in it) or how many programs I have running. System info: Linux localhost 2.6.11.3 #1 SMP Wed Mar 16 13:20:03 PST 2005 i686 Intel(R) Xeon(TM) CPU 2.80GHz unknown GNU/Linux # cat /proc/meminfo MemTotal: 705876 kB MemFree: 9248 kB Buffers: 9388 kB Cached: 535572 kB SwapCached: 0 kB Active: 171092 kB Inactive: 485232 kB HighTotal: 0 kB HighFree: 0 kB LowTotal: 705876 kB LowFree: 9248 kB SwapTotal: 1124508 kB SwapFree: 1123916 kB Dirty: 52 kB Writeback: 0 kB Mapped: 165332 kB Slab: 18528 kB CommitLimit: 1477444 kB Committed_AS: 189412 kB PageTables: 1596 kB VmallocTotal: 311288 kB VmallocUsed: 272308 kB VmallocChunk: 36852 kB Thank you for any guidance. Shaun - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/