linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm64/defconfig: Enable CONFIG_KEXEC_FILE
@ 2020-04-06 22:31 Bhupesh Sharma
  2020-04-08 10:46 ` Mark Rutland
  0 siblings, 1 reply; 9+ messages in thread
From: Bhupesh Sharma @ 2020-04-06 22:31 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: Mark Rutland, Catalin Marinas, bhsharma, kexec, AKASHI Takahiro,
	James Morse, bhupesh.linux, Will Deacon

kexec_file_load() syscall interface is now supported for
arm64 architecture as well via commits:
3751e728cef2 ("arm64: kexec_file: add crash dump support") and
3ddd9992a590 ("arm64: enable KEXEC_FILE config")].

This patch enables config KEXEC_FILE by default in the
arm64 defconfig, so that user-space tools like kexec-tools
can use the same as the default interface for kexec/kdump
on arm64.

Cc: AKASHI Takahiro <takahiro.akashi@linaro.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: James Morse <james.morse@arm.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Will Deacon <will@kernel.org>
Cc: kexec@lists.infradead.org

Signed-off-by: Bhupesh Sharma <bhsharma@redhat.com>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 24e534d85045..fa122f4341a2 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -66,6 +66,7 @@ CONFIG_SCHED_SMT=y
 CONFIG_NUMA=y
 CONFIG_SECCOMP=y
 CONFIG_KEXEC=y
+CONFIG_KEXEC_FILE=y
 CONFIG_CRASH_DUMP=y
 CONFIG_XEN=y
 CONFIG_COMPAT=y
-- 
2.7.4


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH] arm64/defconfig: Enable CONFIG_KEXEC_FILE
  2020-04-06 22:31 [PATCH] arm64/defconfig: Enable CONFIG_KEXEC_FILE Bhupesh Sharma
@ 2020-04-08 10:46 ` Mark Rutland
  2020-04-28  8:25   ` Bhupesh Sharma
  0 siblings, 1 reply; 9+ messages in thread
From: Mark Rutland @ 2020-04-08 10:46 UTC (permalink / raw)
  To: Bhupesh Sharma
  Cc: Catalin Marinas, kexec, AKASHI Takahiro, James Morse,
	bhupesh.linux, Will Deacon, linux-arm-kernel

On Tue, Apr 07, 2020 at 04:01:40AM +0530, Bhupesh Sharma wrote:
> kexec_file_load() syscall interface is now supported for
> arm64 architecture as well via commits:
> 3751e728cef2 ("arm64: kexec_file: add crash dump support") and
> 3ddd9992a590 ("arm64: enable KEXEC_FILE config")].
> 
> This patch enables config KEXEC_FILE by default in the
> arm64 defconfig, so that user-space tools like kexec-tools
> can use the same as the default interface for kexec/kdump
> on arm64.
> 
> Cc: AKASHI Takahiro <takahiro.akashi@linaro.org>
> Cc: Catalin Marinas <catalin.marinas@arm.com>
> Cc: James Morse <james.morse@arm.com>
> Cc: Mark Rutland <mark.rutland@arm.com>
> Cc: Will Deacon <will@kernel.org>
> Cc: kexec@lists.infradead.org
> 
> Signed-off-by: Bhupesh Sharma <bhsharma@redhat.com>

FWIW:

Acked-by: Mark Rutland <mark.rutland@arm.com>

Mark.

> ---
>  arch/arm64/configs/defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> index 24e534d85045..fa122f4341a2 100644
> --- a/arch/arm64/configs/defconfig
> +++ b/arch/arm64/configs/defconfig
> @@ -66,6 +66,7 @@ CONFIG_SCHED_SMT=y
>  CONFIG_NUMA=y
>  CONFIG_SECCOMP=y
>  CONFIG_KEXEC=y
> +CONFIG_KEXEC_FILE=y
>  CONFIG_CRASH_DUMP=y
>  CONFIG_XEN=y
>  CONFIG_COMPAT=y
> -- 
> 2.7.4
> 

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] arm64/defconfig: Enable CONFIG_KEXEC_FILE
  2020-04-08 10:46 ` Mark Rutland
@ 2020-04-28  8:25   ` Bhupesh Sharma
  2020-04-28 10:07     ` Catalin Marinas
  0 siblings, 1 reply; 9+ messages in thread
From: Bhupesh Sharma @ 2020-04-28  8:25 UTC (permalink / raw)
  To: Mark Rutland
  Cc: Catalin Marinas, kexec mailing list, AKASHI Takahiro,
	James Morse, Bhupesh SHARMA, Will Deacon, linux-arm-kernel

On Wed, Apr 8, 2020 at 4:17 PM Mark Rutland <mark.rutland@arm.com> wrote:
>
> On Tue, Apr 07, 2020 at 04:01:40AM +0530, Bhupesh Sharma wrote:
> > kexec_file_load() syscall interface is now supported for
> > arm64 architecture as well via commits:
> > 3751e728cef2 ("arm64: kexec_file: add crash dump support") and
> > 3ddd9992a590 ("arm64: enable KEXEC_FILE config")].
> >
> > This patch enables config KEXEC_FILE by default in the
> > arm64 defconfig, so that user-space tools like kexec-tools
> > can use the same as the default interface for kexec/kdump
> > on arm64.
> >
> > Cc: AKASHI Takahiro <takahiro.akashi@linaro.org>
> > Cc: Catalin Marinas <catalin.marinas@arm.com>
> > Cc: James Morse <james.morse@arm.com>
> > Cc: Mark Rutland <mark.rutland@arm.com>
> > Cc: Will Deacon <will@kernel.org>
> > Cc: kexec@lists.infradead.org
> >
> > Signed-off-by: Bhupesh Sharma <bhsharma@redhat.com>
>
> FWIW:
>
> Acked-by: Mark Rutland <mark.rutland@arm.com>
>
> Mark.
>
> > ---
> >  arch/arm64/configs/defconfig | 1 +
> >  1 file changed, 1 insertion(+)
> >
> > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> > index 24e534d85045..fa122f4341a2 100644
> > --- a/arch/arm64/configs/defconfig
> > +++ b/arch/arm64/configs/defconfig
> > @@ -66,6 +66,7 @@ CONFIG_SCHED_SMT=y
> >  CONFIG_NUMA=y
> >  CONFIG_SECCOMP=y
> >  CONFIG_KEXEC=y
> > +CONFIG_KEXEC_FILE=y
> >  CONFIG_CRASH_DUMP=y
> >  CONFIG_XEN=y
> >  CONFIG_COMPAT=y
> > --
> > 2.7.4
> >

Thanks a lot  Mark.

Hi Catalin, Will,

Can you please help pick this patch in the arm tree. We have an
increasing number of user-cases from distro users
who want to use kexec_file_load() as the default interface for
kexec/kdump on arm64.

Regards,
Bhupesh


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] arm64/defconfig: Enable CONFIG_KEXEC_FILE
  2020-04-28  8:25   ` Bhupesh Sharma
@ 2020-04-28 10:07     ` Catalin Marinas
  2020-04-30  4:35       ` Bhupesh Sharma
  0 siblings, 1 reply; 9+ messages in thread
From: Catalin Marinas @ 2020-04-28 10:07 UTC (permalink / raw)
  To: Bhupesh Sharma
  Cc: Mark Rutland, kexec mailing list, AKASHI Takahiro, arm,
	James Morse, Bhupesh SHARMA, Will Deacon, linux-arm-kernel

On Tue, Apr 28, 2020 at 01:55:58PM +0530, Bhupesh Sharma wrote:
> On Wed, Apr 8, 2020 at 4:17 PM Mark Rutland <mark.rutland@arm.com> wrote:
> > On Tue, Apr 07, 2020 at 04:01:40AM +0530, Bhupesh Sharma wrote:
> > >  arch/arm64/configs/defconfig | 1 +
> > >  1 file changed, 1 insertion(+)
> > >
> > > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> > > index 24e534d85045..fa122f4341a2 100644
> > > --- a/arch/arm64/configs/defconfig
> > > +++ b/arch/arm64/configs/defconfig
> > > @@ -66,6 +66,7 @@ CONFIG_SCHED_SMT=y
> > >  CONFIG_NUMA=y
> > >  CONFIG_SECCOMP=y
> > >  CONFIG_KEXEC=y
> > > +CONFIG_KEXEC_FILE=y
> > >  CONFIG_CRASH_DUMP=y
> > >  CONFIG_XEN=y
> > >  CONFIG_COMPAT=y
> > > --
> > > 2.7.4
> 
> Thanks a lot  Mark.
> 
> Hi Catalin, Will,
> 
> Can you please help pick this patch in the arm tree. We have an
> increasing number of user-cases from distro users
> who want to use kexec_file_load() as the default interface for
> kexec/kdump on arm64.

We could pick it up if it doesn't conflict with the arm-soc tree. They
tend to pick most of the defconfig changes these days (and could as well
pick this one).

-- 
Catalin

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] arm64/defconfig: Enable CONFIG_KEXEC_FILE
  2020-04-28 10:07     ` Catalin Marinas
@ 2020-04-30  4:35       ` Bhupesh Sharma
  2020-05-15  9:14         ` Bhupesh Sharma
  0 siblings, 1 reply; 9+ messages in thread
From: Bhupesh Sharma @ 2020-04-30  4:35 UTC (permalink / raw)
  To: Catalin Marinas, Arnd Bergmann
  Cc: Mark Rutland, kexec mailing list, AKASHI Takahiro, arm,
	James Morse, Bhupesh SHARMA, Will Deacon, linux-arm-kernel

On Tue, Apr 28, 2020 at 3:37 PM Catalin Marinas <catalin.marinas@arm.com> wrote:
>
> On Tue, Apr 28, 2020 at 01:55:58PM +0530, Bhupesh Sharma wrote:
> > On Wed, Apr 8, 2020 at 4:17 PM Mark Rutland <mark.rutland@arm.com> wrote:
> > > On Tue, Apr 07, 2020 at 04:01:40AM +0530, Bhupesh Sharma wrote:
> > > >  arch/arm64/configs/defconfig | 1 +
> > > >  1 file changed, 1 insertion(+)
> > > >
> > > > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> > > > index 24e534d85045..fa122f4341a2 100644
> > > > --- a/arch/arm64/configs/defconfig
> > > > +++ b/arch/arm64/configs/defconfig
> > > > @@ -66,6 +66,7 @@ CONFIG_SCHED_SMT=y
> > > >  CONFIG_NUMA=y
> > > >  CONFIG_SECCOMP=y
> > > >  CONFIG_KEXEC=y
> > > > +CONFIG_KEXEC_FILE=y
> > > >  CONFIG_CRASH_DUMP=y
> > > >  CONFIG_XEN=y
> > > >  CONFIG_COMPAT=y
> > > > --
> > > > 2.7.4
> >
> > Thanks a lot  Mark.
> >
> > Hi Catalin, Will,
> >
> > Can you please help pick this patch in the arm tree. We have an
> > increasing number of user-cases from distro users
> > who want to use kexec_file_load() as the default interface for
> > kexec/kdump on arm64.
>
> We could pick it up if it doesn't conflict with the arm-soc tree. They
> tend to pick most of the defconfig changes these days (and could as well
> pick this one).

Thanks Catalin.
(+Cc Arnd)

Hi Arnd,

Can you please help pick this change via the arm-soc tree?

Thanks,
Bhupesh


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] arm64/defconfig: Enable CONFIG_KEXEC_FILE
  2020-04-30  4:35       ` Bhupesh Sharma
@ 2020-05-15  9:14         ` Bhupesh Sharma
  2020-07-02 19:25           ` Bhupesh Sharma
  0 siblings, 1 reply; 9+ messages in thread
From: Bhupesh Sharma @ 2020-05-15  9:14 UTC (permalink / raw)
  To: Catalin Marinas, Arnd Bergmann
  Cc: Mark Rutland, kexec mailing list, AKASHI Takahiro, arm,
	James Morse, Bhupesh SHARMA, Will Deacon, linux-arm-kernel

Hi Arnd,

On Thu, Apr 30, 2020 at 10:05 AM Bhupesh Sharma <bhsharma@redhat.com> wrote:
>
> On Tue, Apr 28, 2020 at 3:37 PM Catalin Marinas <catalin.marinas@arm.com> wrote:
> >
> > On Tue, Apr 28, 2020 at 01:55:58PM +0530, Bhupesh Sharma wrote:
> > > On Wed, Apr 8, 2020 at 4:17 PM Mark Rutland <mark.rutland@arm.com> wrote:
> > > > On Tue, Apr 07, 2020 at 04:01:40AM +0530, Bhupesh Sharma wrote:
> > > > >  arch/arm64/configs/defconfig | 1 +
> > > > >  1 file changed, 1 insertion(+)
> > > > >
> > > > > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> > > > > index 24e534d85045..fa122f4341a2 100644
> > > > > --- a/arch/arm64/configs/defconfig
> > > > > +++ b/arch/arm64/configs/defconfig
> > > > > @@ -66,6 +66,7 @@ CONFIG_SCHED_SMT=y
> > > > >  CONFIG_NUMA=y
> > > > >  CONFIG_SECCOMP=y
> > > > >  CONFIG_KEXEC=y
> > > > > +CONFIG_KEXEC_FILE=y
> > > > >  CONFIG_CRASH_DUMP=y
> > > > >  CONFIG_XEN=y
> > > > >  CONFIG_COMPAT=y
> > > > > --
> > > > > 2.7.4
> > >
> > > Thanks a lot  Mark.
> > >
> > > Hi Catalin, Will,
> > >
> > > Can you please help pick this patch in the arm tree. We have an
> > > increasing number of user-cases from distro users
> > > who want to use kexec_file_load() as the default interface for
> > > kexec/kdump on arm64.
> >
> > We could pick it up if it doesn't conflict with the arm-soc tree. They
> > tend to pick most of the defconfig changes these days (and could as well
> > pick this one).
>
> Thanks Catalin.
> (+Cc Arnd)
>
> Hi Arnd,
>
> Can you please help pick this change via the arm-soc tree?

Ping. Any updates on this defconfig patch.

Thanks,
Bhupesh


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] arm64/defconfig: Enable CONFIG_KEXEC_FILE
  2020-05-15  9:14         ` Bhupesh Sharma
@ 2020-07-02 19:25           ` Bhupesh Sharma
  2020-07-03 16:39             ` Catalin Marinas
  0 siblings, 1 reply; 9+ messages in thread
From: Bhupesh Sharma @ 2020-07-02 19:25 UTC (permalink / raw)
  To: Catalin Marinas, Arnd Bergmann
  Cc: Mark Rutland, kexec mailing list, AKASHI Takahiro, arm,
	James Morse, Bhupesh SHARMA, Will Deacon, linux-arm-kernel

Hi Catalin,

On Fri, May 15, 2020 at 2:44 PM Bhupesh Sharma <bhsharma@redhat.com> wrote:
>
> Hi Arnd,
>
> On Thu, Apr 30, 2020 at 10:05 AM Bhupesh Sharma <bhsharma@redhat.com> wrote:
> >
> > On Tue, Apr 28, 2020 at 3:37 PM Catalin Marinas <catalin.marinas@arm.com> wrote:
> > >
> > > On Tue, Apr 28, 2020 at 01:55:58PM +0530, Bhupesh Sharma wrote:
> > > > On Wed, Apr 8, 2020 at 4:17 PM Mark Rutland <mark.rutland@arm.com> wrote:
> > > > > On Tue, Apr 07, 2020 at 04:01:40AM +0530, Bhupesh Sharma wrote:
> > > > > >  arch/arm64/configs/defconfig | 1 +
> > > > > >  1 file changed, 1 insertion(+)
> > > > > >
> > > > > > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> > > > > > index 24e534d85045..fa122f4341a2 100644
> > > > > > --- a/arch/arm64/configs/defconfig
> > > > > > +++ b/arch/arm64/configs/defconfig
> > > > > > @@ -66,6 +66,7 @@ CONFIG_SCHED_SMT=y
> > > > > >  CONFIG_NUMA=y
> > > > > >  CONFIG_SECCOMP=y
> > > > > >  CONFIG_KEXEC=y
> > > > > > +CONFIG_KEXEC_FILE=y
> > > > > >  CONFIG_CRASH_DUMP=y
> > > > > >  CONFIG_XEN=y
> > > > > >  CONFIG_COMPAT=y
> > > > > > --
> > > > > > 2.7.4
> > > >
> > > > Thanks a lot  Mark.
> > > >
> > > > Hi Catalin, Will,
> > > >
> > > > Can you please help pick this patch in the arm tree. We have an
> > > > increasing number of user-cases from distro users
> > > > who want to use kexec_file_load() as the default interface for
> > > > kexec/kdump on arm64.
> > >
> > > We could pick it up if it doesn't conflict with the arm-soc tree. They
> > > tend to pick most of the defconfig changes these days (and could as well
> > > pick this one).
> >
> > Thanks Catalin.
> > (+Cc Arnd)
> >
> > Hi Arnd,
> >
> > Can you please help pick this change via the arm-soc tree?
>
> Ping. Any updates on this defconfig patch.

Ping. Seems there is no reply from Arnd on this patch.
Can you please help pull in this one as well. It has been pending for
quite some time now.

Thanks,
Bhupesh


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] arm64/defconfig: Enable CONFIG_KEXEC_FILE
  2020-07-02 19:25           ` Bhupesh Sharma
@ 2020-07-03 16:39             ` Catalin Marinas
  2020-07-04 20:15               ` Bhupesh Sharma
  0 siblings, 1 reply; 9+ messages in thread
From: Catalin Marinas @ 2020-07-03 16:39 UTC (permalink / raw)
  To: Bhupesh Sharma
  Cc: Mark Rutland, Arnd Bergmann, kexec mailing list, AKASHI Takahiro,
	arm, James Morse, Bhupesh SHARMA, Will Deacon, linux-arm-kernel

On Fri, Jul 03, 2020 at 12:55:03AM +0530, Bhupesh Sharma wrote:
> On Fri, May 15, 2020 at 2:44 PM Bhupesh Sharma <bhsharma@redhat.com> wrote:
> > On Thu, Apr 30, 2020 at 10:05 AM Bhupesh Sharma <bhsharma@redhat.com> wrote:
> > > On Tue, Apr 28, 2020 at 3:37 PM Catalin Marinas <catalin.marinas@arm.com> wrote:
> > > >
> > > > On Tue, Apr 28, 2020 at 01:55:58PM +0530, Bhupesh Sharma wrote:
> > > > > On Wed, Apr 8, 2020 at 4:17 PM Mark Rutland <mark.rutland@arm.com> wrote:
> > > > > > On Tue, Apr 07, 2020 at 04:01:40AM +0530, Bhupesh Sharma wrote:
> > > > > > >  arch/arm64/configs/defconfig | 1 +
> > > > > > >  1 file changed, 1 insertion(+)
> > > > > > >
> > > > > > > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> > > > > > > index 24e534d85045..fa122f4341a2 100644
> > > > > > > --- a/arch/arm64/configs/defconfig
> > > > > > > +++ b/arch/arm64/configs/defconfig
> > > > > > > @@ -66,6 +66,7 @@ CONFIG_SCHED_SMT=y
> > > > > > >  CONFIG_NUMA=y
> > > > > > >  CONFIG_SECCOMP=y
> > > > > > >  CONFIG_KEXEC=y
> > > > > > > +CONFIG_KEXEC_FILE=y
> > > > > > >  CONFIG_CRASH_DUMP=y
> > > > > > >  CONFIG_XEN=y
> > > > > > >  CONFIG_COMPAT=y
> > > > > > > --
> > > > > > > 2.7.4
> > > > >
> > > > > Thanks a lot  Mark.
> > > > >
> > > > > Hi Catalin, Will,
> > > > >
> > > > > Can you please help pick this patch in the arm tree. We have an
> > > > > increasing number of user-cases from distro users
> > > > > who want to use kexec_file_load() as the default interface for
> > > > > kexec/kdump on arm64.
> > > >
> > > > We could pick it up if it doesn't conflict with the arm-soc tree. They
> > > > tend to pick most of the defconfig changes these days (and could as well
> > > > pick this one).
> > >
> > > Thanks Catalin.
> > > (+Cc Arnd)
> > >
> > > Hi Arnd,
> > >
> > > Can you please help pick this change via the arm-soc tree?
> >
> > Ping. Any updates on this defconfig patch.
> 
> Ping. Seems there is no reply from Arnd on this patch.
> Can you please help pull in this one as well. It has been pending for
> quite some time now.

I can queue it for 5.9.

-- 
Catalin

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] arm64/defconfig: Enable CONFIG_KEXEC_FILE
  2020-07-03 16:39             ` Catalin Marinas
@ 2020-07-04 20:15               ` Bhupesh Sharma
  0 siblings, 0 replies; 9+ messages in thread
From: Bhupesh Sharma @ 2020-07-04 20:15 UTC (permalink / raw)
  To: Catalin Marinas
  Cc: Mark Rutland, Arnd Bergmann, kexec mailing list, AKASHI Takahiro,
	arm, James Morse, Bhupesh SHARMA, Will Deacon, linux-arm-kernel

On Fri, Jul 3, 2020 at 10:09 PM Catalin Marinas <catalin.marinas@arm.com> wrote:
>
> On Fri, Jul 03, 2020 at 12:55:03AM +0530, Bhupesh Sharma wrote:
> > On Fri, May 15, 2020 at 2:44 PM Bhupesh Sharma <bhsharma@redhat.com> wrote:
> > > On Thu, Apr 30, 2020 at 10:05 AM Bhupesh Sharma <bhsharma@redhat.com> wrote:
> > > > On Tue, Apr 28, 2020 at 3:37 PM Catalin Marinas <catalin.marinas@arm.com> wrote:
> > > > >
> > > > > On Tue, Apr 28, 2020 at 01:55:58PM +0530, Bhupesh Sharma wrote:
> > > > > > On Wed, Apr 8, 2020 at 4:17 PM Mark Rutland <mark.rutland@arm.com> wrote:
> > > > > > > On Tue, Apr 07, 2020 at 04:01:40AM +0530, Bhupesh Sharma wrote:
> > > > > > > >  arch/arm64/configs/defconfig | 1 +
> > > > > > > >  1 file changed, 1 insertion(+)
> > > > > > > >
> > > > > > > > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> > > > > > > > index 24e534d85045..fa122f4341a2 100644
> > > > > > > > --- a/arch/arm64/configs/defconfig
> > > > > > > > +++ b/arch/arm64/configs/defconfig
> > > > > > > > @@ -66,6 +66,7 @@ CONFIG_SCHED_SMT=y
> > > > > > > >  CONFIG_NUMA=y
> > > > > > > >  CONFIG_SECCOMP=y
> > > > > > > >  CONFIG_KEXEC=y
> > > > > > > > +CONFIG_KEXEC_FILE=y
> > > > > > > >  CONFIG_CRASH_DUMP=y
> > > > > > > >  CONFIG_XEN=y
> > > > > > > >  CONFIG_COMPAT=y
> > > > > > > > --
> > > > > > > > 2.7.4
> > > > > >
> > > > > > Thanks a lot  Mark.
> > > > > >
> > > > > > Hi Catalin, Will,
> > > > > >
> > > > > > Can you please help pick this patch in the arm tree. We have an
> > > > > > increasing number of user-cases from distro users
> > > > > > who want to use kexec_file_load() as the default interface for
> > > > > > kexec/kdump on arm64.
> > > > >
> > > > > We could pick it up if it doesn't conflict with the arm-soc tree. They
> > > > > tend to pick most of the defconfig changes these days (and could as well
> > > > > pick this one).
> > > >
> > > > Thanks Catalin.
> > > > (+Cc Arnd)
> > > >
> > > > Hi Arnd,
> > > >
> > > > Can you please help pick this change via the arm-soc tree?
> > >
> > > Ping. Any updates on this defconfig patch.
> >
> > Ping. Seems there is no reply from Arnd on this patch.
> > Can you please help pull in this one as well. It has been pending for
> > quite some time now.
>
> I can queue it for 5.9.

Many thanks, Catalin.

Regards,
Bhupesh


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2020-07-04 20:17 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-06 22:31 [PATCH] arm64/defconfig: Enable CONFIG_KEXEC_FILE Bhupesh Sharma
2020-04-08 10:46 ` Mark Rutland
2020-04-28  8:25   ` Bhupesh Sharma
2020-04-28 10:07     ` Catalin Marinas
2020-04-30  4:35       ` Bhupesh Sharma
2020-05-15  9:14         ` Bhupesh Sharma
2020-07-02 19:25           ` Bhupesh Sharma
2020-07-03 16:39             ` Catalin Marinas
2020-07-04 20:15               ` Bhupesh Sharma

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).