diff options
Diffstat (limited to 'Documentation/core-api')
| -rw-r--r-- | Documentation/core-api/cachetlb.rst | 6 | ||||
| -rw-r--r-- | Documentation/core-api/mm-api.rst | 5 | 
2 files changed, 11 insertions, 0 deletions
| diff --git a/Documentation/core-api/cachetlb.rst b/Documentation/core-api/cachetlb.rst index 8aed9103e48a..5c0552e78c58 100644 --- a/Documentation/core-api/cachetlb.rst +++ b/Documentation/core-api/cachetlb.rst @@ -326,6 +326,12 @@ maps this page at its virtual address.  			dirty.  Again, see sparc64 for examples of how  			to deal with this. +  ``void flush_dcache_folio(struct folio *folio)`` +	This function is called under the same circumstances as +	flush_dcache_page().  It allows the architecture to +	optimise for flushing the entire folio of pages instead +	of flushing one page at a time. +    ``void copy_to_user_page(struct vm_area_struct *vma, struct page *page,    unsigned long user_vaddr, void *dst, void *src, int len)``    ``void copy_from_user_page(struct vm_area_struct *vma, struct page *page, diff --git a/Documentation/core-api/mm-api.rst b/Documentation/core-api/mm-api.rst index a42f9baddfbf..395835f9289f 100644 --- a/Documentation/core-api/mm-api.rst +++ b/Documentation/core-api/mm-api.rst @@ -95,6 +95,11 @@ More Memory Management Functions  .. kernel-doc:: mm/mempolicy.c  .. kernel-doc:: include/linux/mm_types.h     :internal: +.. kernel-doc:: include/linux/mm_inline.h +.. kernel-doc:: include/linux/page-flags.h  .. kernel-doc:: include/linux/mm.h     :internal: +.. kernel-doc:: include/linux/page_ref.h  .. kernel-doc:: include/linux/mmzone.h +.. kernel-doc:: mm/util.c +   :functions: folio_mapping |