linux-2.6.33/get_user_pages()(mmu)
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#s349cecf]
#backlinks
*説明 [#y52440fa]
-パス: [[linux-2.6.33/mm/memory.c]]
-FIXME: これは何?
--説明
**引数 [#n1a0f89f]
-struct task_struct *tsk
--
--[[linux-2.6.33/task_struct]]
-struct mm_struct *mm
--
--[[linux-2.6.33/mm_struct]]
-unsigned long start
--
-int nr_pages
--
-int write
--
-int force
--
-struct page **pages
--
--[[linux-2.6.33/page]]
-struct vm_area_struct **vmas
-
--[[linux-2.6.33/vm_area_struct]]
**返り値 [#fc697fcd]
-int
--
**参考 [#w3dda315]
*実装 [#s9e9b0c6]
/**
* get_user_pages() - pin user pages in memory
* @tsk: task_struct of target task
* @mm: mm_struct of target mm
* @start: starting user address
* @nr_pages: number of pages from start to pin
* @write: whether pages will be written to by the caller
* @force: whether to force write access even if user ma...
* readonly. This will result in the page being COWed e...
* in MAP_SHARED mappings. You do not want this.
* @pages: array that receives pointers to the pages pin...
* Should be at least nr_pages long. Or NULL, if caller
* only intends to ensure the pages are faulted in.
* @vmas: array of pointers to vmas corresponding to eac...
* Or NULL if the caller does not require them.
*
* Returns number of pages pinned. This may be fewer tha...
* requested. If nr_pages is 0 or negative, returns 0. I...
* were pinned, returns -errno. Each page returned must ...
* with a put_page() call when it is finished with. vmas...
* remain valid while mmap_sem is held.
*
* Must be called with mmap_sem held for read or write.
*
* get_user_pages walks a process's page tables and take...
* each struct page that each user address corresponds t...
* instant. That is, it takes the page that would be acc...
* thread accesses the given user virtual address at tha...
*
* This does not guarantee that the page exists in the u...
* get_user_pages returns, and there may even be a compl...
* page there in some cases (eg. if mmapped pagecache ha...
* and subsequently re faulted). However it does guarant...
* won't be freed completely. And mostly callers simply ...
* contains data that was valid *at some point in time*....
* or similar operation cannot guarantee anything strong...
* locks can't be held over the syscall boundary.
*
* If write=0, the page must not be written to. If the p...
* set_page_dirty (or set_page_dirty_lock, as appropriat...
* after the page is finished with, and before put_page ...
*
* get_user_pages is typically used for fewer-copy IO op...
* handle on the memory by some means other than accesse...
* addresses. The pages may be submitted for DMA to devi...
* their kernel linear mapping (via the kmap APIs). Care...
* use the correct cache flushing APIs.
*
* See also get_user_pages_fast, for performance critica...
*/
int get_user_pages(struct task_struct *tsk, struct mm_st...
unsigned long start, int nr_pages, int write, int force,
struct page **pages, struct vm_area_struct **vmas)
{
int flags = FOLL_TOUCH;
if (pages)
flags |= FOLL_GET;
if (write)
flags |= FOLL_WRITE;
if (force)
flags |= FOLL_FORCE;
-
--[[linux-2.6.33/FOLL_TOUCH]]
-
--[[linux-2.6.33/FOLL_GET]]
-
--[[linux-2.6.33/FOLL_WRITE]]
-
--[[linux-2.6.33/FOLL_FORCE]]
return __get_user_pages(tsk, mm, start, nr_pages, flags...
-
--[[linux-2.6.33/__get_user_pages()]]
}
EXPORT_SYMBOL(get_user_pages);
-ライセンスに関係なくシンボルを公開する。
--[[linux-2.6.33/EXPORT_SYMBOL()]]
*コメント [#g74a94be]
終了行:
*参照元 [#s349cecf]
#backlinks
*説明 [#y52440fa]
-パス: [[linux-2.6.33/mm/memory.c]]
-FIXME: これは何?
--説明
**引数 [#n1a0f89f]
-struct task_struct *tsk
--
--[[linux-2.6.33/task_struct]]
-struct mm_struct *mm
--
--[[linux-2.6.33/mm_struct]]
-unsigned long start
--
-int nr_pages
--
-int write
--
-int force
--
-struct page **pages
--
--[[linux-2.6.33/page]]
-struct vm_area_struct **vmas
-
--[[linux-2.6.33/vm_area_struct]]
**返り値 [#fc697fcd]
-int
--
**参考 [#w3dda315]
*実装 [#s9e9b0c6]
/**
* get_user_pages() - pin user pages in memory
* @tsk: task_struct of target task
* @mm: mm_struct of target mm
* @start: starting user address
* @nr_pages: number of pages from start to pin
* @write: whether pages will be written to by the caller
* @force: whether to force write access even if user ma...
* readonly. This will result in the page being COWed e...
* in MAP_SHARED mappings. You do not want this.
* @pages: array that receives pointers to the pages pin...
* Should be at least nr_pages long. Or NULL, if caller
* only intends to ensure the pages are faulted in.
* @vmas: array of pointers to vmas corresponding to eac...
* Or NULL if the caller does not require them.
*
* Returns number of pages pinned. This may be fewer tha...
* requested. If nr_pages is 0 or negative, returns 0. I...
* were pinned, returns -errno. Each page returned must ...
* with a put_page() call when it is finished with. vmas...
* remain valid while mmap_sem is held.
*
* Must be called with mmap_sem held for read or write.
*
* get_user_pages walks a process's page tables and take...
* each struct page that each user address corresponds t...
* instant. That is, it takes the page that would be acc...
* thread accesses the given user virtual address at tha...
*
* This does not guarantee that the page exists in the u...
* get_user_pages returns, and there may even be a compl...
* page there in some cases (eg. if mmapped pagecache ha...
* and subsequently re faulted). However it does guarant...
* won't be freed completely. And mostly callers simply ...
* contains data that was valid *at some point in time*....
* or similar operation cannot guarantee anything strong...
* locks can't be held over the syscall boundary.
*
* If write=0, the page must not be written to. If the p...
* set_page_dirty (or set_page_dirty_lock, as appropriat...
* after the page is finished with, and before put_page ...
*
* get_user_pages is typically used for fewer-copy IO op...
* handle on the memory by some means other than accesse...
* addresses. The pages may be submitted for DMA to devi...
* their kernel linear mapping (via the kmap APIs). Care...
* use the correct cache flushing APIs.
*
* See also get_user_pages_fast, for performance critica...
*/
int get_user_pages(struct task_struct *tsk, struct mm_st...
unsigned long start, int nr_pages, int write, int force,
struct page **pages, struct vm_area_struct **vmas)
{
int flags = FOLL_TOUCH;
if (pages)
flags |= FOLL_GET;
if (write)
flags |= FOLL_WRITE;
if (force)
flags |= FOLL_FORCE;
-
--[[linux-2.6.33/FOLL_TOUCH]]
-
--[[linux-2.6.33/FOLL_GET]]
-
--[[linux-2.6.33/FOLL_WRITE]]
-
--[[linux-2.6.33/FOLL_FORCE]]
return __get_user_pages(tsk, mm, start, nr_pages, flags...
-
--[[linux-2.6.33/__get_user_pages()]]
}
EXPORT_SYMBOL(get_user_pages);
-ライセンスに関係なくシンボルを公開する。
--[[linux-2.6.33/EXPORT_SYMBOL()]]
*コメント [#g74a94be]
ページ名: