linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Kusanagi Kouichi <slash@ac.auone-net.jp>
Cc: kbuild-all@lists.01.org, Steven Rostedt <rostedt@goodmis.org>,
	Ingo Molnar <mingo@redhat.com>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] tracing: Remove unnecessary DEBUG_FS dependency
Date: Thu, 21 Nov 2019 13:08:45 +0800	[thread overview]
Message-ID: <201911211354.zYtbB4MD%lkp@intel.com> (raw)
In-Reply-To: <20191120104350753.EWCT.12796.ppp.dion.ne.jp@dmta0009.auone-net.jp>

[-- Attachment #1: Type: text/plain, Size: 5097 bytes --]

Hi Kusanagi,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on tip/perf/core]
[also build test ERROR on v5.4-rc8 next-20191120]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Kusanagi-Kouichi/tracing-Remove-unnecessary-DEBUG_FS-dependency/20191121-032827
base:   https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git 8f6ee51d772d0dab407d868449d2c5d9c8d2b6fc
config: arm-exynos_defconfig (attached as .config)
compiler: arm-linux-gnueabi-gcc (GCC) 7.4.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        GCC_VERSION=7.4.0 make.cross ARCH=arm 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   kernel/trace/trace.c: In function 'tracing_init_dentry':
>> kernel/trace/trace.c:8658:9: error: passing argument 3 of 'debugfs_create_automount' from incompatible pointer type [-Werror=incompatible-pointer-types]
            trace_automount, NULL);
            ^~~~~~~~~~~~~~~
   In file included from kernel/trace/trace.c:24:0:
   include/linux/debugfs.h:204:30: note: expected 'struct vfsmount * (*)(void *)' but argument is of type 'struct vfsmount * (*)(struct dentry *, void *)'
    static inline struct dentry *debugfs_create_automount(const char *name,
                                 ^~~~~~~~~~~~~~~~~~~~~~~~
   cc1: some warnings being treated as errors

vim +/debugfs_create_automount +8658 kernel/trace/trace.c

f76180bc07abc3 Steven Rostedt (Red Hat  2015-01-20  8630) 
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8631) /**
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8632)  * tracing_init_dentry - initialize top level trace array
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8633)  *
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8634)  * This is called when creating files or directories in the tracing
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8635)  * directory. It is called via fs_initcall() by any of the boot up code
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8636)  * and expects to return the dentry of the top level tracing directory.
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8637)  */
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8638) struct dentry *tracing_init_dentry(void)
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8639) {
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8640) 	struct trace_array *tr = &global_trace;
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8641) 
f76180bc07abc3 Steven Rostedt (Red Hat  2015-01-20  8642) 	/* The top level trace array uses  NULL as parent */
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8643) 	if (tr->dir)
f76180bc07abc3 Steven Rostedt (Red Hat  2015-01-20  8644) 		return NULL;
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8645) 
8b1291994d8e5e Jiaxing Wang             2015-11-06  8646  	if (WARN_ON(!tracefs_initialized()) ||
8b1291994d8e5e Jiaxing Wang             2015-11-06  8647  		(IS_ENABLED(CONFIG_DEBUG_FS) &&
8b1291994d8e5e Jiaxing Wang             2015-11-06  8648  		 WARN_ON(!debugfs_initialized())))
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8649) 		return ERR_PTR(-ENODEV);
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8650) 
f76180bc07abc3 Steven Rostedt (Red Hat  2015-01-20  8651) 	/*
f76180bc07abc3 Steven Rostedt (Red Hat  2015-01-20  8652) 	 * As there may still be users that expect the tracing
f76180bc07abc3 Steven Rostedt (Red Hat  2015-01-20  8653) 	 * files to exist in debugfs/tracing, we must automount
f76180bc07abc3 Steven Rostedt (Red Hat  2015-01-20  8654) 	 * the tracefs file system there, so older tools still
f76180bc07abc3 Steven Rostedt (Red Hat  2015-01-20  8655) 	 * work with the newer kerenl.
f76180bc07abc3 Steven Rostedt (Red Hat  2015-01-20  8656) 	 */
f76180bc07abc3 Steven Rostedt (Red Hat  2015-01-20  8657) 	tr->dir = debugfs_create_automount("tracing", NULL,
f76180bc07abc3 Steven Rostedt (Red Hat  2015-01-20 @8658) 					   trace_automount, NULL);
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8659) 
8434dc9340cd2e Steven Rostedt (Red Hat  2015-01-20  8660) 	return NULL;
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8661) }
7eeafbcab47fe9 Steven Rostedt (Red Hat  2015-01-26  8662) 

:::::: The code at line 8658 was first introduced by commit
:::::: f76180bc07abc399977bfbe8c43bf58c4570e893 tracing: Automatically mount tracefs on debugfs/tracing

:::::: TO: Steven Rostedt (Red Hat) <rostedt@goodmis.org>
:::::: CC: Steven Rostedt <rostedt@goodmis.org>

---
0-DAY kernel test infrastructure                 Open Source Technology Center
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 31235 bytes --]

  reply	other threads:[~2019-11-21  5:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-20 10:43 [PATCH] tracing: Remove unnecessary DEBUG_FS dependency Kusanagi Kouichi
2019-11-21  5:08 ` kbuild test robot [this message]
2019-11-21 23:44   ` Steven Rostedt
2019-11-21 23:34 ` Steven Rostedt

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=201911211354.zYtbB4MD%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=rostedt@goodmis.org \
    --cc=slash@ac.auone-net.jp \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).