linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [linux-next:master 8826/10150] mm/zsmalloc.c:431:20: warning: function 'is_first_zpdesc' is not needed and will not be emitted
@ 2025-01-24  1:30 kernel test robot
  2025-01-24  1:45 ` Hyeonggon Yoo
  0 siblings, 1 reply; 3+ messages in thread
From: kernel test robot @ 2025-01-24  1:30 UTC (permalink / raw)
  To: Alex Shi
  Cc: llvm, oe-kbuild-all, Andrew Morton, Linux Memory Management List,
	Hyeonggon Yoo

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   853d1f41ba73e78d22e7075d9a95670aab187eba
commit: 1c6c153b503f90d1099ae606198e080a452687f6 [8826/10150] mm/zsmalloc: use zpdesc in trylock_zspage()/lock_zspage()
config: i386-randconfig-005-20250124 (https://download.01.org/0day-ci/archive/20250124/202501240958.4ILzuBrH-lkp@intel.com/config)
compiler: clang version 19.1.3 (https://github.com/llvm/llvm-project ab51eccf88f5321e7c60591c5546b254b6afab99)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250124/202501240958.4ILzuBrH-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/202501240958.4ILzuBrH-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> mm/zsmalloc.c:431:20: warning: function 'is_first_zpdesc' is not needed and will not be emitted [-Wunneeded-internal-declaration]
     431 | static inline bool is_first_zpdesc(struct zpdesc *zpdesc)
         |                    ^~~~~~~~~~~~~~~
   1 warning generated.


vim +/is_first_zpdesc +431 mm/zsmalloc.c

   430	
 > 431	static inline bool is_first_zpdesc(struct zpdesc *zpdesc)
   432	{
   433		return PagePrivate(zpdesc_page(zpdesc));
   434	}
   435	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [linux-next:master 8826/10150] mm/zsmalloc.c:431:20: warning: function 'is_first_zpdesc' is not needed and will not be emitted
  2025-01-24  1:30 [linux-next:master 8826/10150] mm/zsmalloc.c:431:20: warning: function 'is_first_zpdesc' is not needed and will not be emitted kernel test robot
@ 2025-01-24  1:45 ` Hyeonggon Yoo
  2025-01-24  2:01   ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Hyeonggon Yoo @ 2025-01-24  1:45 UTC (permalink / raw)
  To: kernel test robot, Alex Shi
  Cc: kernel_team, 42.hyeyoo, llvm, oe-kbuild-all, Andrew Morton,
	Linux Memory Management List



On 1/24/2025 10:30 AM, kernel test robot wrote:
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
> head:   853d1f41ba73e78d22e7075d9a95670aab187eba
> commit: 1c6c153b503f90d1099ae606198e080a452687f6 [8826/10150] mm/zsmalloc: use zpdesc in trylock_zspage()/lock_zspage()
> config: i386-randconfig-005-20250124 (https://download.01.org/0day-ci/archive/20250124/202501240958.4ILzuBrH-lkp@intel.com/config)
> compiler: clang version 19.1.3 (https://github.com/llvm/llvm-project ab51eccf88f5321e7c60591c5546b254b6afab99)
> reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250124/202501240958.4ILzuBrH-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/202501240958.4ILzuBrH-lkp@intel.com/
> 
> All warnings (new ones prefixed by >>):
> 
>>> mm/zsmalloc.c:431:20: warning: function 'is_first_zpdesc' is not needed and will not be emitted [-Wunneeded-internal-declaration]
>       431 | static inline bool is_first_zpdesc(struct zpdesc *zpdesc)

Ok. for now is_first_zpdesc() is only used to check erroneous conditions
on CONFIG_DEBUG_VM=y. Simply adding __maybe_unused will be enough to
suppress this warning.

However I'm afraid that it's too late to update the patch now.

Andrew, if you're ok I'll send a patch after the merge window's closed.
How does that sound?

--
Hyeonggon

>           |                    ^~~~~~~~~~~~~~~
>     1 warning generated.
> 
> 
> vim +/is_first_zpdesc +431 mm/zsmalloc.c
> 
>     430	
>   > 431	static inline bool is_first_zpdesc(struct zpdesc *zpdesc)
>     432	{
>     433		return PagePrivate(zpdesc_page(zpdesc));
>     434	}
>     435	
> 



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [linux-next:master 8826/10150] mm/zsmalloc.c:431:20: warning: function 'is_first_zpdesc' is not needed and will not be emitted
  2025-01-24  1:45 ` Hyeonggon Yoo
@ 2025-01-24  2:01   ` Andrew Morton
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Morton @ 2025-01-24  2:01 UTC (permalink / raw)
  To: Hyeonggon Yoo
  Cc: kernel test robot, Alex Shi, kernel_team, 42.hyeyoo, llvm,
	oe-kbuild-all, Linux Memory Management List

On Fri, 24 Jan 2025 10:45:45 +0900 Hyeonggon Yoo <hyeonggon.yoo@sk.com> wrote:

> Andrew, if you're ok I'll send a patch after the merge window's closed.
> How does that sound?

Please send the fix as soon as you can conveniently prepare it.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-01-24  2:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-24  1:30 [linux-next:master 8826/10150] mm/zsmalloc.c:431:20: warning: function 'is_first_zpdesc' is not needed and will not be emitted kernel test robot
2025-01-24  1:45 ` Hyeonggon Yoo
2025-01-24  2:01   ` Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox