All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Ganesh Goudar <ganeshgr@linux.ibm.com>,
	mpe@ellerman.id.au, linuxppc-dev@lists.ozlabs.org
Cc: mahesh@linux.vnet.ibm.com, Ganesh Goudar <ganeshgr@linux.ibm.com>,
	kbuild-all@lists.01.org, npiggin@gmail.com,
	aneesh.kumar@linux.ibm.com
Subject: Re: [PATCH v3] powerpc/pseries: Avoid using addr_to_pfn in realmode
Date: Mon, 20 Jul 2020 20:49:18 +0800	[thread overview]
Message-ID: <202007202023.IN8NL3HG%lkp@intel.com> (raw)
In-Reply-To: <20200720080335.21049-1-ganeshgr@linux.ibm.com>

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

Hi Ganesh,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on powerpc/next]
[also build test WARNING on v5.8-rc6 next-20200720]
[cannot apply to mpe/next scottwood/next]
[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]

url:    https://github.com/0day-ci/linux/commits/Ganesh-Goudar/powerpc-pseries-Avoid-using-addr_to_pfn-in-realmode/20200720-160622
base:   https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git next
config: powerpc-allyesconfig (attached as .config)
compiler: powerpc64-linux-gcc (GCC) 9.3.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
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=powerpc 

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

All warnings (new ones prefixed by >>):

   arch/powerpc/platforms/pseries/ras.c:125:12: warning: no previous prototype for 'init_ras_hotplug_IRQ' [-Wmissing-prototypes]
     125 | int __init init_ras_hotplug_IRQ(void)
         |            ^~~~~~~~~~~~~~~~~~~~
   arch/powerpc/platforms/pseries/ras.c: In function 'ras_epow_interrupt':
   arch/powerpc/platforms/pseries/ras.c:319:6: warning: variable 'status' set but not used [-Wunused-but-set-variable]
     319 |  int status;
         |      ^~~~~~
   arch/powerpc/platforms/pseries/ras.c: In function 'mce_handle_error':
>> arch/powerpc/platforms/pseries/ras.c:723:17: warning: variable 'err_sub_type' set but not used [-Wunused-but-set-variable]
     723 |  u8 error_type, err_sub_type;
         |                 ^~~~~~~~~~~~

vim +/err_sub_type +723 arch/powerpc/platforms/pseries/ras.c

   717	
   718	static int mce_handle_error(struct pt_regs *regs, struct rtas_error_log *errp)
   719	{
   720		struct pseries_errorlog *pseries_log;
   721		struct pseries_mc_errorlog *mce_log = NULL;
   722		int disposition = rtas_error_disposition(errp);
 > 723		u8 error_type, err_sub_type;
   724	
   725		if (!rtas_error_extended(errp))
   726			goto out;
   727	
   728		pseries_log = get_pseries_errorlog(errp, PSERIES_ELOG_SECT_ID_MCE);
   729		if (!pseries_log)
   730			goto out;
   731	
   732		mce_log = (struct pseries_mc_errorlog *)pseries_log->data;
   733		error_type = mce_log->error_type;
   734		err_sub_type = rtas_mc_error_sub_type(mce_log);
   735	
   736		disposition = mce_handle_err_realmode(disposition, error_type);
   737	
   738		/*
   739		 * Enable translation as we will be accessing per-cpu variables
   740		 * in save_mce_event() which may fall outside RMO region, also
   741		 * leave it enabled because subsequently we will be queuing work
   742		 * to workqueues where again per-cpu variables accessed, besides
   743		 * fwnmi_release_errinfo() crashes when called in realmode on
   744		 * pseries.
   745		 * Note: All the realmode handling like flushing SLB entries for
   746		 *       SLB multihit is done by now.
   747		 */
   748	out:
   749		mtmsr(mfmsr() | MSR_IR | MSR_DR);
   750		disposition = mce_handle_err_virtmode(regs, errp, mce_log,
   751						      disposition);
   752		return disposition;
   753	}
   754	

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

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

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v3] powerpc/pseries: Avoid using addr_to_pfn in realmode
Date: Mon, 20 Jul 2020 20:49:18 +0800	[thread overview]
Message-ID: <202007202023.IN8NL3HG%lkp@intel.com> (raw)
In-Reply-To: <20200720080335.21049-1-ganeshgr@linux.ibm.com>

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

Hi Ganesh,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on powerpc/next]
[also build test WARNING on v5.8-rc6 next-20200720]
[cannot apply to mpe/next scottwood/next]
[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]

url:    https://github.com/0day-ci/linux/commits/Ganesh-Goudar/powerpc-pseries-Avoid-using-addr_to_pfn-in-realmode/20200720-160622
base:   https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git next
config: powerpc-allyesconfig (attached as .config)
compiler: powerpc64-linux-gcc (GCC) 9.3.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
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=powerpc 

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

All warnings (new ones prefixed by >>):

   arch/powerpc/platforms/pseries/ras.c:125:12: warning: no previous prototype for 'init_ras_hotplug_IRQ' [-Wmissing-prototypes]
     125 | int __init init_ras_hotplug_IRQ(void)
         |            ^~~~~~~~~~~~~~~~~~~~
   arch/powerpc/platforms/pseries/ras.c: In function 'ras_epow_interrupt':
   arch/powerpc/platforms/pseries/ras.c:319:6: warning: variable 'status' set but not used [-Wunused-but-set-variable]
     319 |  int status;
         |      ^~~~~~
   arch/powerpc/platforms/pseries/ras.c: In function 'mce_handle_error':
>> arch/powerpc/platforms/pseries/ras.c:723:17: warning: variable 'err_sub_type' set but not used [-Wunused-but-set-variable]
     723 |  u8 error_type, err_sub_type;
         |                 ^~~~~~~~~~~~

vim +/err_sub_type +723 arch/powerpc/platforms/pseries/ras.c

   717	
   718	static int mce_handle_error(struct pt_regs *regs, struct rtas_error_log *errp)
   719	{
   720		struct pseries_errorlog *pseries_log;
   721		struct pseries_mc_errorlog *mce_log = NULL;
   722		int disposition = rtas_error_disposition(errp);
 > 723		u8 error_type, err_sub_type;
   724	
   725		if (!rtas_error_extended(errp))
   726			goto out;
   727	
   728		pseries_log = get_pseries_errorlog(errp, PSERIES_ELOG_SECT_ID_MCE);
   729		if (!pseries_log)
   730			goto out;
   731	
   732		mce_log = (struct pseries_mc_errorlog *)pseries_log->data;
   733		error_type = mce_log->error_type;
   734		err_sub_type = rtas_mc_error_sub_type(mce_log);
   735	
   736		disposition = mce_handle_err_realmode(disposition, error_type);
   737	
   738		/*
   739		 * Enable translation as we will be accessing per-cpu variables
   740		 * in save_mce_event() which may fall outside RMO region, also
   741		 * leave it enabled because subsequently we will be queuing work
   742		 * to workqueues where again per-cpu variables accessed, besides
   743		 * fwnmi_release_errinfo() crashes when called in realmode on
   744		 * pseries.
   745		 * Note: All the realmode handling like flushing SLB entries for
   746		 *       SLB multihit is done by now.
   747		 */
   748	out:
   749		mtmsr(mfmsr() | MSR_IR | MSR_DR);
   750		disposition = mce_handle_err_virtmode(regs, errp, mce_log,
   751						      disposition);
   752		return disposition;
   753	}
   754	

---
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: 69702 bytes --]

  reply	other threads:[~2020-07-20 12:57 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-20  8:03 [PATCH v3] powerpc/pseries: Avoid using addr_to_pfn in realmode Ganesh Goudar
2020-07-20 12:49 ` kernel test robot [this message]
2020-07-20 12:49   ` kernel test robot
2020-07-21 10:08 ` Nicholas Piggin
2020-07-22 10:37   ` Ganesh

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=202007202023.IN8NL3HG%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=aneesh.kumar@linux.ibm.com \
    --cc=ganeshgr@linux.ibm.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=mahesh@linux.vnet.ibm.com \
    --cc=mpe@ellerman.id.au \
    --cc=npiggin@gmail.com \
    /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.