projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52fb90c
)
mm/z3fold: remove unneeded PAGE_HEADLESS check in free_handle()
author
Miaohe Lin
<linmiaohe@huawei.com>
Fri, 29 Apr 2022 06:16:06 +0000
(23:16 -0700)
committer
akpm
<akpm@linux-foundation.org>
Fri, 29 Apr 2022 06:16:06 +0000
(23:16 -0700)
The only caller z3fold_free() never calls free_handle() in PAGE_HEADLESS
case. Remove this unneeded check.
Link:
https://lkml.kernel.org/r/20220308134311.59086-9-linmiaohe@huawei.com
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Reviewed-by: Vitaly Wool <vitaly.wool@konsulko.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/z3fold.c
patch
|
blob
|
history
diff --git
a/mm/z3fold.c
b/mm/z3fold.c
index 867c590df027ef567be92c41ee1ba8a57d59679b..83b5a3514427e7ef6d936d9447e299dc09cbe7c9 100644
(file)
--- a/
mm/z3fold.c
+++ b/
mm/z3fold.c
@@
-297,9
+297,6
@@
static inline void free_handle(unsigned long handle, struct z3fold_header *zhdr)
int i;
bool is_free;
- if (handle & (1 << PAGE_HEADLESS))
- return;
-
if (WARN_ON(*(unsigned long *)handle == 0))
return;