* Re: [PATCH v5] PM: Support aborting sleep during filesystem sync
[not found] <20251017233907.2305303-1-wusamuel@google.com>
@ 2025-10-18 18:31 ` kernel test robot
2025-10-21 20:13 ` Samuel Wu
0 siblings, 1 reply; 2+ messages in thread
From: kernel test robot @ 2025-10-18 18:31 UTC (permalink / raw)
To: Samuel Wu, Rafael J. Wysocki, Pavel Machek, Len Brown,
Greg Kroah-Hartman, Danilo Krummrich
Cc: llvm, oe-kbuild-all, tuhaowen, Samuel Wu, Saravana Kannan,
kernel-team, linux-pm, linux-kernel
Hi Samuel,
kernel test robot noticed the following build errors:
[auto build test ERROR on rafael-pm/linux-next]
[also build test ERROR on rafael-pm/bleeding-edge amd-pstate/linux-next amd-pstate/bleeding-edge linus/master v6.18-rc1 next-20251017]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Samuel-Wu/PM-Support-aborting-sleep-during-filesystem-sync/20251018-091422
base: https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git linux-next
patch link: https://lore.kernel.org/r/20251017233907.2305303-1-wusamuel%40google.com
patch subject: [PATCH v5] PM: Support aborting sleep during filesystem sync
config: i386-randconfig-012-20251018 (https://download.01.org/0day-ci/archive/20251019/202510190215.ppx4apvg-lkp@intel.com/config)
compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251019/202510190215.ppx4apvg-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/202510190215.ppx4apvg-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from arch/x86/kernel/asm-offsets.c:14:
>> include/linux/suspend.h:510:15: error: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int]
510 | static inline pm_stop_waiting_for_fs_sync(void) {}
| ~~~~~~~~~~~~~ ^
| int
1 error generated.
make[3]: *** [scripts/Makefile.build:182: arch/x86/kernel/asm-offsets.s] Error 1 shuffle=1011955029
make[3]: Target 'prepare' not remade because of errors.
make[2]: *** [Makefile:1280: prepare0] Error 2 shuffle=1011955029
make[2]: Target 'prepare' not remade because of errors.
make[1]: *** [Makefile:248: __sub-make] Error 2 shuffle=1011955029
make[1]: Target 'prepare' not remade because of errors.
make: *** [Makefile:248: __sub-make] Error 2 shuffle=1011955029
make: Target 'prepare' not remade because of errors.
vim +/int +510 include/linux/suspend.h
508
509 static inline void ksys_sync_helper(void) {}
> 510 static inline pm_stop_waiting_for_fs_sync(void) {}
511 static inline int pm_sleep_fs_sync(void) {}
512
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH v5] PM: Support aborting sleep during filesystem sync
2025-10-18 18:31 ` [PATCH v5] PM: Support aborting sleep during filesystem sync kernel test robot
@ 2025-10-21 20:13 ` Samuel Wu
0 siblings, 0 replies; 2+ messages in thread
From: Samuel Wu @ 2025-10-21 20:13 UTC (permalink / raw)
To: kernel test robot
Cc: Rafael J. Wysocki, Pavel Machek, Len Brown, Greg Kroah-Hartman,
Danilo Krummrich, llvm, oe-kbuild-all, tuhaowen, Saravana Kannan,
kernel-team, linux-pm, linux-kernel
On Sat, Oct 18, 2025 at 11:32 AM kernel test robot <lkp@intel.com> wrote:
>
> Hi Samuel,
>
> kernel test robot noticed the following build errors:
>
> [auto build test ERROR on rafael-pm/linux-next]
> [also build test ERROR on rafael-pm/bleeding-edge amd-pstate/linux-next amd-pstate/bleeding-edge linus/master v6.18-rc1 next-20251017]
> [If your patch is applied to the wrong git tree, kindly drop us a note.
> And when submitting patch, we suggest to use '--base' as documented in
> https://git-scm.com/docs/git-format-patch#_base_tree_information]
>
> url: https://github.com/intel-lab-lkp/linux/commits/Samuel-Wu/PM-Support-aborting-sleep-during-filesystem-sync/20251018-091422
> base: https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git linux-next
> patch link: https://lore.kernel.org/r/20251017233907.2305303-1-wusamuel%40google.com
> patch subject: [PATCH v5] PM: Support aborting sleep during filesystem sync
> config: i386-randconfig-012-20251018 (https://download.01.org/0day-ci/archive/20251019/202510190215.ppx4apvg-lkp@intel.com/config)
> compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261)
> reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251019/202510190215.ppx4apvg-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/202510190215.ppx4apvg-lkp@intel.com/
>
> All errors (new ones prefixed by >>):
>
> In file included from arch/x86/kernel/asm-offsets.c:14:
> >> include/linux/suspend.h:510:15: error: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int]
> 510 | static inline pm_stop_waiting_for_fs_sync(void) {}
> | ~~~~~~~~~~~~~ ^
> | int
> 1 error generated.
> make[3]: *** [scripts/Makefile.build:182: arch/x86/kernel/asm-offsets.s] Error 1 shuffle=1011955029
> make[3]: Target 'prepare' not remade because of errors.
> make[2]: *** [Makefile:1280: prepare0] Error 2 shuffle=1011955029
> make[2]: Target 'prepare' not remade because of errors.
> make[1]: *** [Makefile:248: __sub-make] Error 2 shuffle=1011955029
> make[1]: Target 'prepare' not remade because of errors.
> make: *** [Makefile:248: __sub-make] Error 2 shuffle=1011955029
> make: Target 'prepare' not remade because of errors.
>
>
> vim +/int +510 include/linux/suspend.h
>
> 508
> 509 static inline void ksys_sync_helper(void) {}
> > 510 static inline pm_stop_waiting_for_fs_sync(void) {}
> 511 static inline int pm_sleep_fs_sync(void) {}
> 512
>
> --
> 0-DAY CI Kernel Test Service
> https://github.com/intel/lkp-tests/wiki
Oversight on my part- I'll fix this in v6 along with other feedback
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-10-21 20:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20251017233907.2305303-1-wusamuel@google.com>
2025-10-18 18:31 ` [PATCH v5] PM: Support aborting sleep during filesystem sync kernel test robot
2025-10-21 20:13 ` Samuel Wu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox