From: "Suresh E. Warrier" <warrier@linux.vnet.ibm.com>
To: Fengguang Wu <lkp@intel.com>
Cc: paulus@samba.org, kbuild-all@01.org, kvm@vger.kernel.org, agraf@suse.de
Subject: Re: [kbuild-all] [PATCH 5/6] KVM: PPC: Book3S HV: Send IPI to host core to wake VCPU
Date: Mon, 2 Nov 2015 16:10:45 -0600 [thread overview]
Message-ID: <5637DF65.7030109@linux.vnet.ibm.com> (raw)
In-Reply-To: <20151102025115.GA9409@wfg-t540p.sh.intel.com>
Hi Fengguang,
I understand the problem.
I will send you the URL for the powerpc git tree once my patches
are pulled in so that we can then pass that to the robot.
Thanks.
-suresh
On 11/01/2015 08:51 PM, Fengguang Wu wrote:
> Hi Suresh,
>
> Sorry for the noise!
>
> Do you have a git tree that the robot can monitor and test?
>
> In this case of one patchset depending on another, there is no chance
> for the robot to do valid testing based on emailed patches.
>
> Thanks,
> Fengguang
>
> On Fri, Oct 30, 2015 at 10:16:06AM -0500, Suresh E. Warrier wrote:
>> This patch set depends upon a previous patch set that I had submitted to
>> linux-ppc. The URL for that is:
>>
>> https://lists.ozlabs.org/pipermail/linuxppc-dev/2015-October/135794.html
>>
>> -suresh
>>
>> On 10/29/2015 11:52 PM, kbuild test robot wrote:
>>> Hi Suresh,
>>>
>>> [auto build test ERROR on kvm/linux-next -- if it's inappropriate base, please suggest rules for selecting the more suitable base]
>>>
>>> url: https://github.com/0day-ci/linux/commits/Suresh-Warrier/KVM-PPC-Book3S-HV-Optimize-wakeup-VCPU-from-H_IPI/20151030-081329
>>> config: powerpc-defconfig (attached as .config)
>>> reproduce:
>>> wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
>>> chmod +x ~/bin/make.cross
>>> # save the attached .config to linux build tree
>>> make.cross ARCH=powerpc
>>>
>>> All errors (new ones prefixed by >>):
>>>
>>> arch/powerpc/kvm/book3s_hv_rm_xics.c: In function 'icp_rm_set_vcpu_irq':
>>>>> arch/powerpc/kvm/book3s_hv_rm_xics.c:142:4: error: implicit declaration of function 'smp_muxed_ipi_rm_message_pass' [-Werror=implicit-function-declaration]
>>> smp_muxed_ipi_rm_message_pass(hcpu,
>>> ^
>>> arch/powerpc/kvm/book3s_hv_rm_xics.c:143:7: error: 'PPC_MSG_RM_HOST_ACTION' undeclared (first use in this function)
>>> PPC_MSG_RM_HOST_ACTION);
>>> ^
>>> arch/powerpc/kvm/book3s_hv_rm_xics.c:143:7: note: each undeclared identifier is reported only once for each function it appears in
>>> cc1: all warnings being treated as errors
>>>
>>> vim +/smp_muxed_ipi_rm_message_pass +142 arch/powerpc/kvm/book3s_hv_rm_xics.c
>>>
>>> 136 hcore = -1;
>>> 137 if (kvmppc_host_rm_ops_hv)
>>> 138 hcore = find_available_hostcore(XICS_RM_KICK_VCPU);
>>> 139 if (hcore != -1) {
>>> 140 hcpu = hcore << threads_shift;
>>> 141 kvmppc_host_rm_ops_hv->rm_core[hcore].rm_data = vcpu;
>>> > 142 smp_muxed_ipi_rm_message_pass(hcpu,
>>> 143 PPC_MSG_RM_HOST_ACTION);
>>> 144 } else {
>>> 145 this_icp->rm_action |= XICS_RM_KICK_VCPU;
>>>
>>> ---
>>> 0-DAY kernel test infrastructure Open Source Technology Center
>>> https://lists.01.org/pipermail/kbuild-all Intel Corporation
>>>
>>
>> _______________________________________________
>> kbuild-all mailing list
>> kbuild-all@lists.01.org
>> https://lists.01.org/mailman/listinfo/kbuild-all
>
next prev parent reply other threads:[~2015-11-02 22:10 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-30 0:09 [PATCH 0/6] KVM: PPC: Book3S HV: Optimize wakeup VCPU from H_IPI Suresh Warrier
2015-10-30 0:09 ` [PATCH 1/6] KVM: PPC: Book3S HV: Host-side RM data structures Suresh Warrier
2015-10-30 0:09 ` [PATCH 2/6] KVM: PPC: Book3S HV: Manage core host state Suresh Warrier
2015-10-30 0:09 ` [PATCH 3/6] KVM: PPC: Book3S HV: kvmppc_host_rm_ops - handle offlining CPUs Suresh Warrier
2015-10-30 0:09 ` [PATCH 4/6] KVM: PPC: Book3S HV: Host side kick VCPU when poked by real-mode KVM Suresh Warrier
2015-10-30 0:09 ` [PATCH 5/6] KVM: PPC: Book3S HV: Send IPI to host core to wake VCPU Suresh Warrier
2015-10-30 4:52 ` kbuild test robot
2015-10-30 15:16 ` Suresh E. Warrier
2015-11-02 2:51 ` [kbuild-all] " Fengguang Wu
2015-11-02 22:10 ` Suresh E. Warrier [this message]
2015-11-02 22:46 ` Michael Ellerman
2015-10-30 9:23 ` kbuild test robot
2015-10-30 0:09 ` [PATCH 6/6] KVM: PPC: Book3S HV: Add tunable to control H_IPI redirection Suresh Warrier
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=5637DF65.7030109@linux.vnet.ibm.com \
--to=warrier@linux.vnet.ibm.com \
--cc=agraf@suse.de \
--cc=kbuild-all@01.org \
--cc=kvm@vger.kernel.org \
--cc=lkp@intel.com \
--cc=paulus@samba.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 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).