Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fecd4a50 authored by Wei Yang's avatar Wei Yang Committed by Linus Torvalds
Browse files

mm: remove reset of pcp->counter in pageset_init()

per_cpu_pageset is cleared by memset, it is not necessary to reset it
again.

Link: http://lkml.kernel.org/r/20181021023920.5501-1-richard.weiyang@gmail.com


Signed-off-by: default avatarWei Yang <richard.weiyang@gmail.com>
Reviewed-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Cc: Michal Hocko <mhocko@suse.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 46a3679b
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -5737,7 +5737,6 @@ static void pageset_init(struct per_cpu_pageset *p)
	memset(p, 0, sizeof(*p));

	pcp = &p->pcp;
	pcp->count = 0;
	for (migratetype = 0; migratetype < MIGRATE_PCPTYPES; migratetype++)
		INIT_LIST_HEAD(&pcp->lists[migratetype]);
}