All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: [jimc:dd-drm-next 2/11] lib/dynamic_debug.c:609:68: error: invalid use of undefined type 'struct module'
Date: Fri, 20 Aug 2021 22:09:41 +0800	[thread overview]
Message-ID: <202108202235.ihI2NNlA-lkp@intel.com> (raw)

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

tree:   https://github.com/jimc/linux.git dd-drm-next
head:   334f24cc73a3d5051217851d4616cb89c2d152dc
commit: 0322252e3c15fa80be1780ca68dde765a57f2c4b [2/11] dyndbg: add DEFINE_DYNAMIC_DEBUG_CATEGORIES and callbacks
config: s390-randconfig-r035-20210820 (attached as .config)
compiler: s390-linux-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/jimc/linux/commit/0322252e3c15fa80be1780ca68dde765a57f2c4b
        git remote add jimc https://github.com/jimc/linux.git
        git fetch --no-tags jimc dd-drm-next
        git checkout 0322252e3c15fa80be1780ca68dde765a57f2c4b
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=s390 SHELL=/bin/bash

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

All errors (new ones prefixed by >>):

   lib/dynamic_debug.c: In function 'param_set_dyndbg':
>> lib/dynamic_debug.c:609:68: error: invalid use of undefined type 'struct module'
     609 |                 matches = dynamic_debug_exec_queries(query, kp->mod->name);
         |                                                                    ^~


vim +609 lib/dynamic_debug.c

   579	
   580	#define FMT_QUERY_SIZE 128 /* typically need <40 */
   581	/**
   582	 * param_set_dyndbg() - drm.debug style bits=>categories setter
   583	 * @instr: string echo>d to sysfs
   584	 * @kp:    struct kernel_param* ->data has bitmap
   585	 * Exported to support DEFINE_DYNAMIC_DEBUG_CATEGORIES
   586	 */
   587	int param_set_dyndbg(const char *instr, const struct kernel_param *kp)
   588	{
   589		unsigned long inbits;
   590		int rc, i, matches = 0, totct = 0;
   591		char query[FMT_QUERY_SIZE];
   592		const struct dyndbg_bitdesc *bitmap = kp->data;
   593	
   594		if (!bitmap) {
   595			pr_err("set_dyndbg: no bits=>queries map\n");
   596			return -EINVAL;
   597		}
   598		rc = kstrtoul(instr, 0, &inbits);
   599		if (rc) {
   600			pr_err("set_dyndbg: failed\n");
   601			return rc;
   602		}
   603		vpr_info("set_dyndbg: input 0x%lx\n", inbits);
   604	
   605		for (i = 0; bitmap->prefix; i++, bitmap++) {
   606			snprintf(query, FMT_QUERY_SIZE, "format '^%s' %cp", bitmap->prefix,
   607				 test_bit(i, &inbits) ? '+' : '-');
   608	
 > 609			matches = dynamic_debug_exec_queries(query, kp->mod->name);
   610	
   611			v2pr_info("bit-%d: %d matches on '%s'\n", i, matches, query);
   612			totct += matches;
   613		}
   614		vpr_info("total matches: %d\n", totct);
   615		return 0;
   616	}
   617	EXPORT_SYMBOL(param_set_dyndbg);
   618	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

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

             reply	other threads:[~2021-08-20 14:09 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-20 14:09 kernel test robot [this message]
2021-08-21 14:34 ` [jimc:dd-drm-next 2/11] lib/dynamic_debug.c:609:68: error: invalid use of undefined type 'struct module' jim.cromie

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=202108202235.ihI2NNlA-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    /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.