From: kernel test robot <lkp@intel.com>
To: Shaomin Deng <dengshaomin@cdjrlc.com>,
agk@redhat.com, snitzer@kernel.org, dm-devel@redhat.com,
linux-kernel@vger.kernel.org
Cc: Shaomin Deng <dengshaomin@cdjrlc.com>, kbuild-all@lists.01.org
Subject: Re: [dm-devel] [PATCH] dm: Remove the unneeeded variable
Date: Sun, 28 Aug 2022 02:35:32 +0800 [thread overview]
Message-ID: <202208280213.3Ws9aJBm-lkp@intel.com> (raw)
In-Reply-To: <20220827163848.24296-1-dengshaomin@cdjrlc.com>
Hi Shaomin,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on v6.0-rc2]
[also build test ERROR on linus/master next-20220826]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Shaomin-Deng/dm-Remove-the-unneeeded-variable/20220828-004044
base: 1c23f9e627a7b412978b4e852793c5e3c3efc555
config: x86_64-defconfig (https://download.01.org/0day-ci/archive/20220828/202208280213.3Ws9aJBm-lkp@intel.com/config)
compiler: gcc-11 (Debian 11.3.0-5) 11.3.0
reproduce (this is a W=1 build):
# https://github.com/intel-lab-lkp/linux/commit/fd20974ffc753b102401c766eb62117c276a1527
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Shaomin-Deng/dm-Remove-the-unneeeded-variable/20220828-004044
git checkout fd20974ffc753b102401c766eb62117c276a1527
# save the config file
mkdir build_dir && cp config build_dir/.config
make W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash
If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
In file included from include/linux/dm-dirty-log.h:16,
from drivers/md/dm-log.c:13:
drivers/md/dm-log.c: In function 'disk_status':
>> include/linux/device-mapper.h:615:22: error: 'sz' undeclared (first use in this function); did you mean 's8'?
615 | #define DMEMIT(x...) sz += ((sz >= maxlen) ? \
| ^~
drivers/md/dm-log.c:810:17: note: in expansion of macro 'DMEMIT'
810 | DMEMIT("3 %s %s %c", log->type->name, lc->log_dev->name,
| ^~~~~~
include/linux/device-mapper.h:615:22: note: each undeclared identifier is reported only once for each function it appears in
615 | #define DMEMIT(x...) sz += ((sz >= maxlen) ? \
| ^~
drivers/md/dm-log.c:810:17: note: in expansion of macro 'DMEMIT'
810 | DMEMIT("3 %s %s %c", log->type->name, lc->log_dev->name,
| ^~~~~~
vim +615 include/linux/device-mapper.h
0da336e5fab75c Alasdair G Kergon 2008-04-24 614
0da336e5fab75c Alasdair G Kergon 2008-04-24 @615 #define DMEMIT(x...) sz += ((sz >= maxlen) ? \
0da336e5fab75c Alasdair G Kergon 2008-04-24 616 0 : scnprintf(result + sz, maxlen - sz, x))
0da336e5fab75c Alasdair G Kergon 2008-04-24 617
--
0-DAY CI Kernel Test Service
https://01.org/lkp
--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Shaomin Deng <dengshaomin@cdjrlc.com>,
agk@redhat.com, snitzer@kernel.org, dm-devel@redhat.com,
linux-kernel@vger.kernel.org
Cc: kbuild-all@lists.01.org, Shaomin Deng <dengshaomin@cdjrlc.com>
Subject: Re: [PATCH] dm: Remove the unneeeded variable
Date: Sun, 28 Aug 2022 02:35:32 +0800 [thread overview]
Message-ID: <202208280213.3Ws9aJBm-lkp@intel.com> (raw)
In-Reply-To: <20220827163848.24296-1-dengshaomin@cdjrlc.com>
Hi Shaomin,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on v6.0-rc2]
[also build test ERROR on linus/master next-20220826]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Shaomin-Deng/dm-Remove-the-unneeeded-variable/20220828-004044
base: 1c23f9e627a7b412978b4e852793c5e3c3efc555
config: x86_64-defconfig (https://download.01.org/0day-ci/archive/20220828/202208280213.3Ws9aJBm-lkp@intel.com/config)
compiler: gcc-11 (Debian 11.3.0-5) 11.3.0
reproduce (this is a W=1 build):
# https://github.com/intel-lab-lkp/linux/commit/fd20974ffc753b102401c766eb62117c276a1527
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Shaomin-Deng/dm-Remove-the-unneeeded-variable/20220828-004044
git checkout fd20974ffc753b102401c766eb62117c276a1527
# save the config file
mkdir build_dir && cp config build_dir/.config
make W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash
If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
In file included from include/linux/dm-dirty-log.h:16,
from drivers/md/dm-log.c:13:
drivers/md/dm-log.c: In function 'disk_status':
>> include/linux/device-mapper.h:615:22: error: 'sz' undeclared (first use in this function); did you mean 's8'?
615 | #define DMEMIT(x...) sz += ((sz >= maxlen) ? \
| ^~
drivers/md/dm-log.c:810:17: note: in expansion of macro 'DMEMIT'
810 | DMEMIT("3 %s %s %c", log->type->name, lc->log_dev->name,
| ^~~~~~
include/linux/device-mapper.h:615:22: note: each undeclared identifier is reported only once for each function it appears in
615 | #define DMEMIT(x...) sz += ((sz >= maxlen) ? \
| ^~
drivers/md/dm-log.c:810:17: note: in expansion of macro 'DMEMIT'
810 | DMEMIT("3 %s %s %c", log->type->name, lc->log_dev->name,
| ^~~~~~
vim +615 include/linux/device-mapper.h
0da336e5fab75c Alasdair G Kergon 2008-04-24 614
0da336e5fab75c Alasdair G Kergon 2008-04-24 @615 #define DMEMIT(x...) sz += ((sz >= maxlen) ? \
0da336e5fab75c Alasdair G Kergon 2008-04-24 616 0 : scnprintf(result + sz, maxlen - sz, x))
0da336e5fab75c Alasdair G Kergon 2008-04-24 617
--
0-DAY CI Kernel Test Service
https://01.org/lkp
next prev parent reply other threads:[~2022-08-27 18:37 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-27 16:38 [dm-devel] [PATCH] dm: Remove the unneeeded variable Shaomin Deng
2022-08-27 16:38 ` Shaomin Deng
2022-08-27 18:35 ` kernel test robot [this message]
2022-08-27 18:35 ` kernel test robot
2022-08-27 19:46 ` [dm-devel] " kernel test robot
2022-08-27 19:46 ` kernel test robot
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=202208280213.3Ws9aJBm-lkp@intel.com \
--to=lkp@intel.com \
--cc=agk@redhat.com \
--cc=dengshaomin@cdjrlc.com \
--cc=dm-devel@redhat.com \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=snitzer@kernel.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.