summaryrefslogtreecommitdiff
path: root/mm/damon/prmtv-common.h
diff options
context:
space:
mode:
authorXin Hao <xhao@linux.alibaba.com>2022-01-15 01:09:53 +0300
committerLinus Torvalds <torvalds@linux-foundation.org>2022-01-15 17:30:32 +0300
commit9b2a38d6ef25c1748e3964b0ff30a89e4ed26583 (patch)
tree2b57130d69ee33988be17c876f4a3ea2b6d292dc /mm/damon/prmtv-common.h
parentc89ae63eb0662b6c9f82dbfad3ef010239b8c1b1 (diff)
downloadlinux-9b2a38d6ef25c1748e3964b0ff30a89e4ed26583.tar.xz
mm/damon: move damon_rand() definition into damon.h
damon_rand() is called in three files:damon/core.c, damon/ paddr.c, damon/vaddr.c, i think there is no need to redefine this twice, So move it to damon.h will be a good choice. Link: https://lkml.kernel.org/r/20211202075859.51341-1-xhao@linux.alibaba.com Signed-off-by: Xin Hao <xhao@linux.alibaba.com> Reviewed-by: SeongJae Park <sj@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/damon/prmtv-common.h')
-rw-r--r--mm/damon/prmtv-common.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/mm/damon/prmtv-common.h b/mm/damon/prmtv-common.h
index 61f27037603e..e790cb5f8fe0 100644
--- a/mm/damon/prmtv-common.h
+++ b/mm/damon/prmtv-common.h
@@ -6,10 +6,6 @@
*/
#include <linux/damon.h>
-#include <linux/random.h>
-
-/* Get a random number in [l, r) */
-#define damon_rand(l, r) (l + prandom_u32_max(r - l))
struct page *damon_get_page(unsigned long pfn);