projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
931b6a8
)
mm/migrate.c: stop using 0 as NULL pointer
author
Yang Li
<yang.lee@linux.alibaba.com>
Wed, 16 Nov 2022 01:23:45 +0000
(09:23 +0800)
committer
Andrew Morton
<akpm@linux-foundation.org>
Wed, 30 Nov 2022 23:59:00 +0000
(15:59 -0800)
mm/migrate.c:1198:24: warning: Using plain integer as NULL pointer
Link:
https://bugzilla.openanolis.cn/show_bug.cgi?id=3080
Link:
https://lkml.kernel.org/r/20221116012345.84870-1-yang.lee@linux.alibaba.com
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/migrate.c
patch
|
blob
|
history
diff --git
a/mm/migrate.c
b/mm/migrate.c
index 4aa3b6d4f67c92fee1f94c37ca8db6928836645c..3be90351ad1d4928f9e1970318ee375daf229bf3 100644
(file)
--- a/
mm/migrate.c
+++ b/
mm/migrate.c
@@
-1180,7
+1180,7
@@
static int unmap_and_move(new_page_t get_new_page,
return -ENOMEM;
dst = page_folio(newpage);
- dst->private =
0
;
+ dst->private =
NULL
;
rc = __unmap_and_move(src, dst, force, mode);
if (rc == MIGRATEPAGE_SUCCESS)
set_page_owner_migrate_reason(&dst->page, reason);