linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Remove duplicate header file references
@ 2025-12-15  9:11 l00580197
  2025-12-16  6:45 ` [PATCH v2] kho: " l00580197
  2025-12-16 11:44 ` [PATCH v3] " l00580197
  0 siblings, 2 replies; 4+ messages in thread
From: l00580197 @ 2025-12-15  9:11 UTC (permalink / raw)
  To: Alexander Graf, Mike Rapoport, Pasha Tatashin
  Cc: Pratyush Yadav, kexec, linux-mm, linux-kernel, hewenliang4, Long Wei

From: Long Wei <longwei27@huawei.com>

From: Long Wei <longwei27@huawei.com>

kexec_handover_internal.h is included twice in kexec_handover.c.
Remove the redundant first inclusion to eliminate the duplication.

Signed-off-by: Long Wei <longwei27@huawei.com>
---
 kernel/liveupdate/kexec_handover.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kernel/liveupdate/kexec_handover.c b/kernel/liveupdate/kexec_handover.c
index 9dc51fab604f..1962b6052840 100644
--- a/kernel/liveupdate/kexec_handover.c
+++ b/kernel/liveupdate/kexec_handover.c
@@ -24,7 +24,6 @@

 #include <asm/early_ioremap.h>

-#include "kexec_handover_internal.h"
 /*
  * KHO is tightly coupled with mm init and needs access to some of mm
  * internal APIs.
--
2.43.0


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

* [PATCH v2] kho: Remove duplicate header file references
  2025-12-15  9:11 [PATCH] Remove duplicate header file references l00580197
@ 2025-12-16  6:45 ` l00580197
  2025-12-16 10:56   ` Pasha Tatashin
  2025-12-16 11:44 ` [PATCH v3] " l00580197
  1 sibling, 1 reply; 4+ messages in thread
From: l00580197 @ 2025-12-16  6:45 UTC (permalink / raw)
  To: Alexander Graf, Mike Rapoport, Pasha Tatashin
  Cc: Pratyush Yadav, kexec, linux-mm, linux-kernel, hewenliang4, Long Wei

From: Long Wei <longwei27@huawei.com>

Changes in v2:
- Fixed the malformed commit message header (removed duplicate 'From:' line).
- Added module prefix 'kho:' to the subject.

kexec_handover_internal.h is included twice in kexec_handover.c.
Remove the redundant first inclusion to eliminate the duplication.

Signed-off-by: Long Wei <longwei27@huawei.com>
---
 kernel/liveupdate/kexec_handover.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kernel/liveupdate/kexec_handover.c b/kernel/liveupdate/kexec_handover.c
index 9dc51fab604f..1962b6052840 100644
--- a/kernel/liveupdate/kexec_handover.c
+++ b/kernel/liveupdate/kexec_handover.c
@@ -24,7 +24,6 @@

 #include <asm/early_ioremap.h>

-#include "kexec_handover_internal.h"
 /*
  * KHO is tightly coupled with mm init and needs access to some of mm
  * internal APIs.
--
2.43.0


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

* Re: [PATCH v2] kho: Remove duplicate header file references
  2025-12-16  6:45 ` [PATCH v2] kho: " l00580197
@ 2025-12-16 10:56   ` Pasha Tatashin
  0 siblings, 0 replies; 4+ messages in thread
From: Pasha Tatashin @ 2025-12-16 10:56 UTC (permalink / raw)
  To: l00580197
  Cc: Alexander Graf, Mike Rapoport, Pratyush Yadav, kexec, linux-mm,
	linux-kernel, hewenliang4

On Tue, Dec 16, 2025 at 1:45 AM l00580197 <longwei27@huawei.com> wrote:
>
> From: Long Wei <longwei27@huawei.com>
>
> Changes in v2:
> - Fixed the malformed commit message header (removed duplicate 'From:' line).
> - Added module prefix 'kho:' to the subject.

Please move changelog into stat section, so it does not appear part of
the commit log.

>
> kexec_handover_internal.h is included twice in kexec_handover.c.
> Remove the redundant first inclusion to eliminate the duplication.
>
> Signed-off-by: Long Wei <longwei27@huawei.com>

With the above:
Reviewed-by: Pasha Tatashin <pasha.tatashin@soleen.com>

> ---
>  kernel/liveupdate/kexec_handover.c | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/kernel/liveupdate/kexec_handover.c b/kernel/liveupdate/kexec_handover.c
> index 9dc51fab604f..1962b6052840 100644
> --- a/kernel/liveupdate/kexec_handover.c
> +++ b/kernel/liveupdate/kexec_handover.c
> @@ -24,7 +24,6 @@
>
>  #include <asm/early_ioremap.h>
>
> -#include "kexec_handover_internal.h"
>  /*
>   * KHO is tightly coupled with mm init and needs access to some of mm
>   * internal APIs.
> --
> 2.43.0


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

* [PATCH v3] kho: Remove duplicate header file references
  2025-12-15  9:11 [PATCH] Remove duplicate header file references l00580197
  2025-12-16  6:45 ` [PATCH v2] kho: " l00580197
@ 2025-12-16 11:44 ` l00580197
  1 sibling, 0 replies; 4+ messages in thread
From: l00580197 @ 2025-12-16 11:44 UTC (permalink / raw)
  To: Alexander Graf, Mike Rapoport, Pasha Tatashin
  Cc: Pratyush Yadav, kexec, linux-mm, linux-kernel, hewenliang4, Long Wei

From: Long Wei <longwei27@huawei.com>

kexec_handover_internal.h is included twice in kexec_handover.c.
Remove the redundant first inclusion to eliminate the duplication.

Signed-off-by: Long Wei <longwei27@huawei.com>
Reviewed-by: Pasha Tatashin <pasha.tatashin@soleen.com>
---
Changes in v3:
- move changelog into stat section.

Changes in v2:
- Fixed the malformed commit message header (removed duplicate 'From:' line).
- Added module prefix 'kho:' to the subject.

 kernel/liveupdate/kexec_handover.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kernel/liveupdate/kexec_handover.c b/kernel/liveupdate/kexec_handover.c
index 9dc51fab604f..1962b6052840 100644
--- a/kernel/liveupdate/kexec_handover.c
+++ b/kernel/liveupdate/kexec_handover.c
@@ -24,7 +24,6 @@

 #include <asm/early_ioremap.h>

-#include "kexec_handover_internal.h"
 /*
  * KHO is tightly coupled with mm init and needs access to some of mm
  * internal APIs.
--
2.43.0


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

end of thread, other threads:[~2025-12-16 11:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-12-15  9:11 [PATCH] Remove duplicate header file references l00580197
2025-12-16  6:45 ` [PATCH v2] kho: " l00580197
2025-12-16 10:56   ` Pasha Tatashin
2025-12-16 11:44 ` [PATCH v3] " l00580197

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox