diff options
author | Jonathan Corbet <corbet@lwn.net> | 2019-10-01 17:47:47 +0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2019-10-07 18:09:49 +0300 |
commit | cc84ac35d9fa3131179ed0805ddbd28bc5f262d6 (patch) | |
tree | 4daf966c23a4277ccc446fdd32376fa9519f2dcf | |
parent | 81584a6a771b971e1497d33f98019e6c0192e621 (diff) | |
download | linux-cc84ac35d9fa3131179ed0805ddbd28bc5f262d6.tar.xz |
docs: Catch up with the new location of get_user_pages_fast()
Commit 050a9adc6438 ("mm: consolidate the get_user_pages* implementations")
moved get_user_pages_fast() from mm/util.c to mm/gup.c, but didn't update
the documentation, leading to this build warning:
./mm/util.c:1: warning: 'get_user_pages_fast' not found
Update the docs to match the new reality.
Fixes: 050a9adc6438 ("mm: consolidate the get_user_pages* implementations")
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
-rw-r--r-- | Documentation/core-api/mm-api.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/core-api/mm-api.rst b/Documentation/core-api/mm-api.rst index 128e8a721c1e..be726986ff75 100644 --- a/Documentation/core-api/mm-api.rst +++ b/Documentation/core-api/mm-api.rst @@ -11,7 +11,7 @@ User Space Memory Access .. kernel-doc:: arch/x86/lib/usercopy_32.c :export: -.. kernel-doc:: mm/util.c +.. kernel-doc:: mm/gup.c :functions: get_user_pages_fast .. _mm-api-gfp-flags: |