From: kernel test robot <lkp@intel.com>
To: Jeff Layton <jlayton@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev, Chuck Lever <chuck.lever@oracle.com>
Subject: [cel:nfsd-testing 135/137] fs/nfsd/./trace.h:1399:32: error: 'struct trace_event_raw_nfsd_handle_dir_event' has no member named 'i_ino'
Date: Sun, 24 May 2026 04:22:49 +0800 [thread overview]
Message-ID: <202605240459.KHumjIY1-lkp@intel.com> (raw)
tree: https://git.kernel.org/pub/scm/linux/kernel/git/cel/linux nfsd-testing
head: 32a48b959e92ab534d7109818e6f2f0d4013e249
commit: 04cc256388df5d2d284f4d9d3e9f22ebf974f806 [135/137] nfsd: fix ino_t format specifier in nfsd_handle_dir_event tracepoint
config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20260524/202605240459.KHumjIY1-lkp@intel.com/config)
compiler: sh4-linux-gcc (GCC) 15.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260524/202605240459.KHumjIY1-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/202605240459.KHumjIY1-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from include/trace/define_trace.h:132,
from fs/nfsd/trace.h:2781,
from fs/nfsd/trace.c:4:
fs/nfsd/./trace.h: In function 'trace_raw_output_nfsd_handle_dir_event':
>> fs/nfsd/./trace.h:1399:32: error: 'struct trace_event_raw_nfsd_handle_dir_event' has no member named 'i_ino'
1399 | __entry->i_ino, show_fsnotify_mask(__entry->mask),
| ^~
include/trace/trace_events.h:219:34: note: in definition of macro 'DECLARE_EVENT_CLASS'
219 | trace_event_printf(iter, print); \
| ^~~~~
include/trace/trace_events.h:45:30: note: in expansion of macro 'PARAMS'
45 | PARAMS(print)); \
| ^~~~~~
fs/nfsd/./trace.h:1381:1: note: in expansion of macro 'TRACE_EVENT'
1381 | TRACE_EVENT(nfsd_handle_dir_event,
| ^~~~~~~~~~~
fs/nfsd/./trace.h:1397:9: note: in expansion of macro 'TP_printk'
1397 | TP_printk("inode=0x%x:0x%x:0x%llx mask=%s name=%s",
| ^~~~~~~~~
fs/nfsd/./trace.h: In function 'do_trace_event_raw_event_nfsd_handle_dir_event':
fs/nfsd/./trace.h:1394:24: error: 'struct trace_event_raw_nfsd_handle_dir_event' has no member named 'i_ino'
1394 | __entry->i_ino = dir ? dir->i_ino : 0;
| ^~
include/trace/trace_events.h:427:11: note: in definition of macro '__DECLARE_EVENT_CLASS'
427 | { assign; } \
| ^~~~~~
include/trace/trace_events.h:435:23: note: in expansion of macro 'PARAMS'
435 | PARAMS(assign), PARAMS(print)) \
| ^~~~~~
include/trace/trace_events.h:40:9: note: in expansion of macro 'DECLARE_EVENT_CLASS'
40 | DECLARE_EVENT_CLASS(name, \
| ^~~~~~~~~~~~~~~~~~~
include/trace/trace_events.h:44:30: note: in expansion of macro 'PARAMS'
44 | PARAMS(assign), \
| ^~~~~~
fs/nfsd/./trace.h:1381:1: note: in expansion of macro 'TRACE_EVENT'
1381 | TRACE_EVENT(nfsd_handle_dir_event,
| ^~~~~~~~~~~
fs/nfsd/./trace.h:1391:9: note: in expansion of macro 'TP_fast_assign'
1391 | TP_fast_assign(
| ^~~~~~~~~~~~~~
In file included from include/trace/define_trace.h:133:
fs/nfsd/./trace.h: In function 'do_perf_trace_nfsd_handle_dir_event':
fs/nfsd/./trace.h:1394:24: error: 'struct trace_event_raw_nfsd_handle_dir_event' has no member named 'i_ino'
1394 | __entry->i_ino = dir ? dir->i_ino : 0;
| ^~
include/trace/perf.h:51:11: note: in definition of macro '__DECLARE_EVENT_CLASS'
51 | { assign; } \
| ^~~~~~
include/trace/perf.h:67:23: note: in expansion of macro 'PARAMS'
67 | PARAMS(assign), PARAMS(print)) \
| ^~~~~~
include/trace/trace_events.h:40:9: note: in expansion of macro 'DECLARE_EVENT_CLASS'
40 | DECLARE_EVENT_CLASS(name, \
| ^~~~~~~~~~~~~~~~~~~
include/trace/trace_events.h:44:30: note: in expansion of macro 'PARAMS'
44 | PARAMS(assign), \
| ^~~~~~
fs/nfsd/./trace.h:1381:1: note: in expansion of macro 'TRACE_EVENT'
1381 | TRACE_EVENT(nfsd_handle_dir_event,
| ^~~~~~~~~~~
fs/nfsd/./trace.h:1391:9: note: in expansion of macro 'TP_fast_assign'
1391 | TP_fast_assign(
| ^~~~~~~~~~~~~~
vim +1399 fs/nfsd/./trace.h
65294c1f2c5e72b Jeff Layton 2019-08-18 1380
cc1687d186b0542 Jeff Layton 2026-05-22 1381 TRACE_EVENT(nfsd_handle_dir_event,
cc1687d186b0542 Jeff Layton 2026-05-22 1382 TP_PROTO(u32 mask, const struct inode *dir, const struct qstr *name),
cc1687d186b0542 Jeff Layton 2026-05-22 1383 TP_ARGS(mask, dir, name),
cc1687d186b0542 Jeff Layton 2026-05-22 1384 TP_STRUCT__entry(
cc1687d186b0542 Jeff Layton 2026-05-22 1385 __field(u32, mask)
cc1687d186b0542 Jeff Layton 2026-05-22 1386 __field(dev_t, s_dev)
04cc256388df5d2 Jeff Layton 2026-05-23 1387 __field(ino_t, u64)
cc1687d186b0542 Jeff Layton 2026-05-22 1388 __string_len(name, name ? name->name : NULL,
cc1687d186b0542 Jeff Layton 2026-05-22 1389 name ? name->len : 0)
cc1687d186b0542 Jeff Layton 2026-05-22 1390 ),
cc1687d186b0542 Jeff Layton 2026-05-22 1391 TP_fast_assign(
cc1687d186b0542 Jeff Layton 2026-05-22 1392 __entry->mask = mask;
cc1687d186b0542 Jeff Layton 2026-05-22 1393 __entry->s_dev = dir ? dir->i_sb->s_dev : 0;
cc1687d186b0542 Jeff Layton 2026-05-22 1394 __entry->i_ino = dir ? dir->i_ino : 0;
cc1687d186b0542 Jeff Layton 2026-05-22 1395 __assign_str(name);
cc1687d186b0542 Jeff Layton 2026-05-22 1396 ),
04cc256388df5d2 Jeff Layton 2026-05-23 1397 TP_printk("inode=0x%x:0x%x:0x%llx mask=%s name=%s",
cc1687d186b0542 Jeff Layton 2026-05-22 1398 MAJOR(__entry->s_dev), MINOR(__entry->s_dev),
cc1687d186b0542 Jeff Layton 2026-05-22 @1399 __entry->i_ino, show_fsnotify_mask(__entry->mask),
cc1687d186b0542 Jeff Layton 2026-05-22 1400 __get_str(name))
cc1687d186b0542 Jeff Layton 2026-05-22 1401 );
cc1687d186b0542 Jeff Layton 2026-05-22 1402
:::::: The code at line 1399 was first introduced by commit
:::::: cc1687d186b0542390badca86c6a87e17c95b378 nfsd: add tracepoint to dir_event handler
:::::: TO: Jeff Layton <jlayton@kernel.org>
:::::: CC: Chuck Lever <chuck.lever@oracle.com>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
reply other threads:[~2026-05-23 20:23 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=202605240459.KHumjIY1-lkp@intel.com \
--to=lkp@intel.com \
--cc=chuck.lever@oracle.com \
--cc=jlayton@kernel.org \
--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.