diff options
author | Miaohe Lin <linmiaohe@huawei.com> | 2021-02-26 04:17:56 +0300 |
---|---|---|
committer | Sasha Levin <sashal@kernel.org> | 2021-06-30 15:47:51 +0300 |
commit | 432b61863ac726c41188899fbda52561ade8f301 (patch) | |
tree | ddba9f220ea2d3275c9d7802709dd9afa1c597de /mm/rmap.c | |
parent | cfe575954ddd176fe278e030270235963b5b5baf (diff) | |
download | linux-432b61863ac726c41188899fbda52561ade8f301.tar.xz |
mm/rmap: remove unneeded semicolon in page_not_mapped()
[ Upstream commit e0af87ff7afcde2660be44302836d2d5618185af ]
Remove extra semicolon without any functional change intended.
Link: https://lkml.kernel.org/r/20210127093425.39640-1-linmiaohe@huawei.com
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'mm/rmap.c')
-rw-r--r-- | mm/rmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/rmap.c b/mm/rmap.c index 0c7b2a9400d4..ccc8a780e348 100644 --- a/mm/rmap.c +++ b/mm/rmap.c @@ -1737,7 +1737,7 @@ bool try_to_unmap(struct page *page, enum ttu_flags flags) static int page_not_mapped(struct page *page) { return !page_mapped(page); -}; +} /** * try_to_munlock - try to munlock a page |