From: kernel test robot <lkp@intel.com>
To: aubrey.li@linux.intel.com
Cc: oe-kbuild-all@lists.linux.dev
Subject: [anolis-intel-cloud:devel-5.10 5/5] mm/khugepaged.c:150: warning: Function parameter or member 'nr_adapt_vma' not described in 'mm_slot'
Date: Fri, 16 May 2025 17:53:14 +0800 [thread overview]
Message-ID: <202505161702.2UbApGa7-lkp@intel.com> (raw)
Hi Rongwei,
FYI, the error/warning still remains.
tree: https://gitee.com/anolis/intel-cloud-kernel.git devel-5.10
head: bfc84bc1ba93833ad3fd1e370a33e511711611a6
commit: b188234c53aafe8941f2f2662bf015353418eb81 [5/5] anolis: mm: hugetext: Implement principal part
config: x86_64-rhel-9.4-rust (https://download.01.org/0day-ci/archive/20250516/202505161702.2UbApGa7-lkp@intel.com/config)
compiler: clang version 18.1.8 (https://github.com/llvm/llvm-project 3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff)
rustc: rustc 1.58.0 (02072b482 2022-01-11)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250516/202505161702.2UbApGa7-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202505161702.2UbApGa7-lkp@intel.com/
All warnings (new ones prefixed by >>):
mm/khugepaged.c:150: warning: Function parameter or member 'nr_pte_mapped_thp' not described in 'mm_slot'
mm/khugepaged.c:150: warning: Function parameter or member 'pte_mapped_thp' not described in 'mm_slot'
mm/khugepaged.c:150: warning: Function parameter or member 'nr_exec_vma' not described in 'mm_slot'
mm/khugepaged.c:150: warning: Function parameter or member 'exec_vma' not described in 'mm_slot'
>> mm/khugepaged.c:150: warning: Function parameter or member 'nr_adapt_vma' not described in 'mm_slot'
>> mm/khugepaged.c:150: warning: Function parameter or member 'adapt_vmas' not described in 'mm_slot'
>> mm/khugepaged.c:150: warning: Function parameter or member 'adaptive_regions' not described in 'mm_slot'
>> mm/khugepaged.c:150: warning: Function parameter or member 'work' not described in 'mm_slot'
>> mm/khugepaged.c:150: warning: Function parameter or member 'state' not described in 'mm_slot'
>> mm/khugepaged.c:150: warning: Function parameter or member 'nr_hugetext' not described in 'mm_slot'
mm/khugepaged.c:1705: warning: Function parameter or member 'mm' not described in 'collapse_pte_mapped_thp'
mm/khugepaged.c:1705: warning: Function parameter or member 'addr' not described in 'collapse_pte_mapped_thp'
mm/khugepaged.c:1907: warning: Function parameter or member 'mm' not described in 'collapse_file'
mm/khugepaged.c:1907: warning: Function parameter or member 'file' not described in 'collapse_file'
mm/khugepaged.c:1907: warning: Function parameter or member 'start' not described in 'collapse_file'
mm/khugepaged.c:1907: warning: Function parameter or member 'hpage' not described in 'collapse_file'
mm/khugepaged.c:1907: warning: Function parameter or member 'node' not described in 'collapse_file'
vim +150 mm/khugepaged.c
b188234c53aafe Rongwei Wang 2022-11-26 121
b46e756f5e4703 Kirill A. Shutemov 2016-07-26 122 /**
b46e756f5e4703 Kirill A. Shutemov 2016-07-26 123 * struct mm_slot - hash lookup from mm to mm_slot
b46e756f5e4703 Kirill A. Shutemov 2016-07-26 124 * @hash: hash collision list
b46e756f5e4703 Kirill A. Shutemov 2016-07-26 125 * @mm_node: khugepaged scan list headed in khugepaged_scan.mm_head
b46e756f5e4703 Kirill A. Shutemov 2016-07-26 126 * @mm: the mm that this information is valid for
b46e756f5e4703 Kirill A. Shutemov 2016-07-26 127 */
b46e756f5e4703 Kirill A. Shutemov 2016-07-26 128 struct mm_slot {
b46e756f5e4703 Kirill A. Shutemov 2016-07-26 129 struct hlist_node hash;
b46e756f5e4703 Kirill A. Shutemov 2016-07-26 130 struct list_head mm_node;
b46e756f5e4703 Kirill A. Shutemov 2016-07-26 131 struct mm_struct *mm;
27e1f8273113ad Song Liu 2019-09-23 132
27e1f8273113ad Song Liu 2019-09-23 133 /* pte-mapped THP in this mm */
27e1f8273113ad Song Liu 2019-09-23 134 int nr_pte_mapped_thp;
27e1f8273113ad Song Liu 2019-09-23 135 unsigned long pte_mapped_thp[MAX_PTE_MAPPED_THP];
5c3c3afed0fd68 Xu Yu 2021-08-19 136
5c3c3afed0fd68 Xu Yu 2021-08-19 137 #ifdef CONFIG_HUGETEXT
5c3c3afed0fd68 Xu Yu 2021-08-19 138 #define MAX_EXEC_VMA 8
5c3c3afed0fd68 Xu Yu 2021-08-19 139 /* exec vma vm_start in this mm */
5c3c3afed0fd68 Xu Yu 2021-08-19 140 int nr_exec_vma;
5c3c3afed0fd68 Xu Yu 2021-08-19 141 unsigned long exec_vma[MAX_EXEC_VMA];
b188234c53aafe Rongwei Wang 2022-11-26 142 int nr_adapt_vma;
b188234c53aafe Rongwei Wang 2022-11-26 143 struct adapt_vma_t adapt_vmas[MAX_EXEC_VMA];
b188234c53aafe Rongwei Wang 2022-11-26 144 struct xarray adaptive_regions;
b188234c53aafe Rongwei Wang 2022-11-26 145 struct delayed_work work;
b188234c53aafe Rongwei Wang 2022-11-26 146 /* Current state of adapt vma */
b188234c53aafe Rongwei Wang 2022-11-26 147 atomic_t state;
b188234c53aafe Rongwei Wang 2022-11-26 148 int nr_hugetext;
5c3c3afed0fd68 Xu Yu 2021-08-19 149 #endif
b46e756f5e4703 Kirill A. Shutemov 2016-07-26 @150 };
b46e756f5e4703 Kirill A. Shutemov 2016-07-26 151
:::::: The code at line 150 was first introduced by commit
:::::: b46e756f5e47031c67658ff036e5ffe27062fa43 thp: extract khugepaged from mm/huge_memory.c
:::::: TO: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
:::::: CC: Linus Torvalds <torvalds@linux-foundation.org>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
reply other threads:[~2025-05-16 9:53 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202505161702.2UbApGa7-lkp@intel.com \
--to=lkp@intel.com \
--cc=aubrey.li@linux.intel.com \
--cc=oe-kbuild-all@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.