From: kbuild test robot <lkp@intel.com>
To: David Howells <dhowells@redhat.com>
Cc: kbuild-all@01.org, linux-fsdevel@vger.kernel.org,
Al Viro <viro@zeniv.linux.org.uk>
Subject: [vfs:work.mount 49/52] fs/fs_context.c:400:3: error: implicit declaration of function 'vprintk_emit'; did you mean 'dev_printk_emit'?
Date: Tue, 1 Jan 2019 04:10:09 +0800 [thread overview]
Message-ID: <201901010446.NKZOfefi%fengguang.wu@intel.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 1941 bytes --]
tree: https://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git work.mount
head: fd6261f4322ce38ab5c2acb0a1578e4caa3b8cc9
commit: e6d72ffc503f7e5fa97fac220aad009a3bd18c8b [49/52] vfs: Implement logging through fs_context
config: m68k-allnoconfig (attached as .config)
compiler: m68k-linux-gnu-gcc (Debian 7.2.0-11) 7.2.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
git checkout e6d72ffc503f7e5fa97fac220aad009a3bd18c8b
# save the attached .config to linux build tree
GCC_VERSION=7.2.0 make.cross ARCH=m68k
All errors (new ones prefixed by >>):
fs/fs_context.c: In function 'logfc':
>> fs/fs_context.c:400:3: error: implicit declaration of function 'vprintk_emit'; did you mean 'dev_printk_emit'? [-Werror=implicit-function-declaration]
vprintk_emit(0, LOGLEVEL_WARNING, NULL, 0, fmt, va);
^~~~~~~~~~~~
dev_printk_emit
cc1: some warnings being treated as errors
vim +400 fs/fs_context.c
386
387 /**
388 * logfc - Log a message to a filesystem context
389 * @fc: The filesystem context to log to.
390 * @fmt: The format of the buffer.
391 */
392 void logfc(struct fs_context *fc, const char *fmt, ...)
393 {
394 va_list va;
395
396 va_start(va, fmt);
397
398 switch (fmt[0]) {
399 case 'w':
> 400 vprintk_emit(0, LOGLEVEL_WARNING, NULL, 0, fmt, va);
401 break;
402 case 'e':
403 vprintk_emit(0, LOGLEVEL_ERR, NULL, 0, fmt, va);
404 break;
405 default:
406 vprintk_emit(0, LOGLEVEL_NOTICE, NULL, 0, fmt, va);
407 break;
408 }
409
410 pr_cont("\n");
411 va_end(va);
412 }
413 EXPORT_SYMBOL(logfc);
414
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 4243 bytes --]
reply other threads:[~2018-12-31 20:10 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=201901010446.NKZOfefi%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=dhowells@redhat.com \
--cc=kbuild-all@01.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=viro@zeniv.linux.org.uk \
/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).