From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1428309AbeCBSDi (ORCPT ); Fri, 2 Mar 2018 13:03:38 -0500 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:51880 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1426543AbeCBSDf (ORCPT ); Fri, 2 Mar 2018 13:03:35 -0500 Date: Fri, 2 Mar 2018 20:03:18 +0200 From: "Michael S. Tsirkin" To: Dave Young Cc: =?iso-8859-1?Q?Marc-Andr=E9?= Lureau , linux-kernel@vger.kernel.org, arnd@arndb.de, bhe@redhat.com, slp@redhat.com, somlo@cmu.edu, xiaolong.ye@intel.com, Andrew Morton , Hari Bathini , Tony Luck , Vivek Goyal Subject: Re: [PATCH v16 09/11] crash: export paddr_vmcoreinfo_note() Message-ID: <20180302200241-mutt-send-email-mst@kernel.org> References: <20180228150615.17317-1-marcandre.lureau@redhat.com> <20180228150615.17317-10-marcandre.lureau@redhat.com> <20180302023204.GA2818@dhcp-128-65.nay.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20180302023204.GA2818@dhcp-128-65.nay.redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Mar 02, 2018 at 10:32:04AM +0800, Dave Young wrote: > Hi > > On 02/28/18 at 04:06pm, Marc-André Lureau wrote: > > The following patch is going to use the symbol from the fw_cfg module, > > to call the function and write the note location details in the > > vmcoreinfo entry, so qemu can produce dumps with the vmcoreinfo note. > > > > CC: Andrew Morton > > CC: Baoquan He > > CC: Dave Young > > CC: Dave Young > > Above duplicated a CC, btw, I remember both Baoquan and me acked it > before, you can find the old email and carry the acked-by. I fixed it but all this is submitter's job really. > > CC: Hari Bathini > > CC: Tony Luck > > CC: Vivek Goyal > > Signed-off-by: Marc-André Lureau > > Acked-by: Gabriel Somlo > > --- > > kernel/crash_core.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/kernel/crash_core.c b/kernel/crash_core.c > > index 4f63597c824d..a93590cdd9e1 100644 > > --- a/kernel/crash_core.c > > +++ b/kernel/crash_core.c > > @@ -376,6 +376,7 @@ phys_addr_t __weak paddr_vmcoreinfo_note(void) > > { > > return __pa(vmcoreinfo_note); > > } > > +EXPORT_SYMBOL(paddr_vmcoreinfo_note); > > > > static int __init crash_save_vmcoreinfo_init(void) > > { > > -- > > 2.16.1.73.g5832b7e9f2 > > > > Thanks > Dave