]> git.baikalelectronics.ru Git - kernel.git/commit
mm/page_owner.c: modify the type of argument "order" in some functions
authorYixuan Cao <caoyixuan2019@email.szu.edu.cn>
Thu, 11 Nov 2021 04:32:30 +0000 (20:32 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 11 Nov 2021 17:34:35 +0000 (09:34 -0800)
commit02b9344981e3c8f223ee815b5571036c13ee756a
tree7469be0ee08bd3021a717ef485ac988072792fa7
parent384d379616191cf9c80fdc5c52fa55fa2c58a3a0
mm/page_owner.c: modify the type of argument "order" in some functions

The type of "order" in struct page_owner is unsigned short.
However, it is unsigned int in the following 3 functions:

  __reset_page_owner
  __set_page_owner_handle
  __set_page_owner_handle

The type of "order" in argument list is unsigned int, which is
inconsistent.

[akpm@linux-foundation.org: update include/linux/page_owner.h]

Link: https://lkml.kernel.org/r/20211020125945.47792-1-caoyixuan2019@email.szu.edu.cn
Signed-off-by: Yixuan Cao <caoyixuan2019@email.szu.edu.cn>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/linux/page_owner.h
mm/page_owner.c