* [ceph-client:testing 25/27] fs/ceph/super.h:60:43: error: 'CEPH_MOUNT_OPT_NEARFULL_SYNC' undeclared; did you mean 'CEPH_MOUNT_OPT_DEFAULT'?
@ 2026-07-08 0:52 kernel test robot
0 siblings, 0 replies; 2+ messages in thread
From: kernel test robot @ 2026-07-08 0:52 UTC (permalink / raw)
To: Max Kellermann; +Cc: oe-kbuild-all, ceph-devel, Alex Markuze
tree: https://github.com/ceph/ceph-client.git testing
head: fc67edb66b3c9924c4e0bb366a92b32ea13c526a
commit: cb4ac0e6565fe667dba2760b6a012306e6f796e0 [25/27] ceph: fix hanging __ceph_get_caps() with stale `mds_wanted`
config: x86_64-rhel-9.4 (https://download.01.org/0day-ci/archive/20260708/202607080215.nhKQKwuZ-lkp@intel.com/config)
compiler: gcc-14 (Debian 14.2.0-19) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260708/202607080215.nhKQKwuZ-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/202607080215.nhKQKwuZ-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from fs/ceph/file.c:17:
fs/ceph/file.c: In function 'ceph_write_iter':
>> fs/ceph/super.h:60:43: error: 'CEPH_MOUNT_OPT_NEARFULL_SYNC' undeclared (first use in this function); did you mean 'CEPH_MOUNT_OPT_DEFAULT'?
60 | (!!((fsc)->mount_options->flags & CEPH_MOUNT_OPT_##opt))
| ^~~~~~~~~~~~~~~
fs/ceph/file.c:2573:21: note: in expansion of macro 'ceph_test_mount_opt'
2573 | if (ceph_test_mount_opt(fsc, NEARFULL_SYNC) &&
| ^~~~~~~~~~~~~~~~~~~
fs/ceph/super.h:60:43: note: each undeclared identifier is reported only once for each function it appears in
60 | (!!((fsc)->mount_options->flags & CEPH_MOUNT_OPT_##opt))
| ^~~~~~~~~~~~~~~
fs/ceph/file.c:2573:21: note: in expansion of macro 'ceph_test_mount_opt'
2573 | if (ceph_test_mount_opt(fsc, NEARFULL_SYNC) &&
| ^~~~~~~~~~~~~~~~~~~
vim +60 fs/ceph/super.h
6a2593823ababd Sage Weil 2010-07-07 49
6f9718fe41c3a4 Luis Henriques 2018-12-10 50 #define CEPH_MOUNT_OPT_DEFAULT \
6f9718fe41c3a4 Luis Henriques 2018-12-10 51 (CEPH_MOUNT_OPT_DCACHE | \
f7a67b463fb83a Jeff Layton 2021-08-09 52 CEPH_MOUNT_OPT_NOCOPYFROM | \
f7a67b463fb83a Jeff Layton 2021-08-09 53 CEPH_MOUNT_OPT_ASYNC_DIROPS)
de57606c23afde Sage Weil 2009-10-06 54
3d14c5d2b6e15c Yehuda Sadeh 2010-04-06 55 #define ceph_set_mount_opt(fsc, opt) \
2ccb45462aeaf0 Jeff Layton 2019-04-02 56 (fsc)->mount_options->flags |= CEPH_MOUNT_OPT_##opt
2ccb45462aeaf0 Jeff Layton 2019-04-02 57 #define ceph_clear_mount_opt(fsc, opt) \
2ccb45462aeaf0 Jeff Layton 2019-04-02 58 (fsc)->mount_options->flags &= ~CEPH_MOUNT_OPT_##opt
3d14c5d2b6e15c Yehuda Sadeh 2010-04-06 59 #define ceph_test_mount_opt(fsc, opt) \
3d14c5d2b6e15c Yehuda Sadeh 2010-04-06 @60 (!!((fsc)->mount_options->flags & CEPH_MOUNT_OPT_##opt))
de57606c23afde Sage Weil 2009-10-06 61
:::::: The code at line 60 was first introduced by commit
:::::: 3d14c5d2b6e15c21d8e5467dc62d33127c23a644 ceph: factor out libceph from Ceph file system
:::::: TO: Yehuda Sadeh <yehuda@hq.newdream.net>
:::::: CC: Sage Weil <sage@newdream.net>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 2+ messages in thread
* [ceph-client:testing 25/27] fs/ceph/super.h:60:43: error: 'CEPH_MOUNT_OPT_NEARFULL_SYNC' undeclared; did you mean 'CEPH_MOUNT_OPT_DEFAULT'?
@ 2026-07-08 12:17 kernel test robot
0 siblings, 0 replies; 2+ messages in thread
From: kernel test robot @ 2026-07-08 12:17 UTC (permalink / raw)
To: Max Kellermann; +Cc: oe-kbuild-all, ceph-devel, Alex Markuze
tree: https://github.com/ceph/ceph-client.git testing
head: fc67edb66b3c9924c4e0bb366a92b32ea13c526a
commit: cb4ac0e6565fe667dba2760b6a012306e6f796e0 [25/27] ceph: fix hanging __ceph_get_caps() with stale `mds_wanted`
config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20260708/202607082010.oE2EyFrA-lkp@intel.com/config)
compiler: sh4-linux-gcc (GCC) 16.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260708/202607082010.oE2EyFrA-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/202607082010.oE2EyFrA-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from fs/ceph/file.c:17:
fs/ceph/file.c: In function 'ceph_write_iter':
>> fs/ceph/super.h:60:43: error: 'CEPH_MOUNT_OPT_NEARFULL_SYNC' undeclared (first use in this function); did you mean 'CEPH_MOUNT_OPT_DEFAULT'?
60 | (!!((fsc)->mount_options->flags & CEPH_MOUNT_OPT_##opt))
| ^~~~~~~~~~~~~~~
fs/ceph/file.c:2573:21: note: in expansion of macro 'ceph_test_mount_opt'
2573 | if (ceph_test_mount_opt(fsc, NEARFULL_SYNC) &&
| ^~~~~~~~~~~~~~~~~~~
fs/ceph/super.h:60:43: note: each undeclared identifier is reported only once for each function it appears in
fs/ceph/file.c:2573:21: note: in expansion of macro 'ceph_test_mount_opt'
2573 | if (ceph_test_mount_opt(fsc, NEARFULL_SYNC) &&
| ^~~~~~~~~~~~~~~~~~~
vim +60 fs/ceph/super.h
6a2593823ababd Sage Weil 2010-07-07 49
6f9718fe41c3a4 Luis Henriques 2018-12-10 50 #define CEPH_MOUNT_OPT_DEFAULT \
6f9718fe41c3a4 Luis Henriques 2018-12-10 51 (CEPH_MOUNT_OPT_DCACHE | \
f7a67b463fb83a Jeff Layton 2021-08-09 52 CEPH_MOUNT_OPT_NOCOPYFROM | \
f7a67b463fb83a Jeff Layton 2021-08-09 53 CEPH_MOUNT_OPT_ASYNC_DIROPS)
de57606c23afde Sage Weil 2009-10-06 54
3d14c5d2b6e15c Yehuda Sadeh 2010-04-06 55 #define ceph_set_mount_opt(fsc, opt) \
2ccb45462aeaf0 Jeff Layton 2019-04-02 56 (fsc)->mount_options->flags |= CEPH_MOUNT_OPT_##opt
2ccb45462aeaf0 Jeff Layton 2019-04-02 57 #define ceph_clear_mount_opt(fsc, opt) \
2ccb45462aeaf0 Jeff Layton 2019-04-02 58 (fsc)->mount_options->flags &= ~CEPH_MOUNT_OPT_##opt
3d14c5d2b6e15c Yehuda Sadeh 2010-04-06 59 #define ceph_test_mount_opt(fsc, opt) \
3d14c5d2b6e15c Yehuda Sadeh 2010-04-06 @60 (!!((fsc)->mount_options->flags & CEPH_MOUNT_OPT_##opt))
de57606c23afde Sage Weil 2009-10-06 61
:::::: The code at line 60 was first introduced by commit
:::::: 3d14c5d2b6e15c21d8e5467dc62d33127c23a644 ceph: factor out libceph from Ceph file system
:::::: TO: Yehuda Sadeh <yehuda@hq.newdream.net>
:::::: CC: Sage Weil <sage@newdream.net>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-07-08 12:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-08 12:17 [ceph-client:testing 25/27] fs/ceph/super.h:60:43: error: 'CEPH_MOUNT_OPT_NEARFULL_SYNC' undeclared; did you mean 'CEPH_MOUNT_OPT_DEFAULT'? kernel test robot
-- strict thread matches above, loose matches on Subject: below --
2026-07-08 0:52 kernel test robot
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.