* [PATCH 1/2] kexec/s390: cleanup: Fix a mistaken comment
@ 2013-05-25 14:32 Zhang Yanfei
2013-05-25 14:34 ` [PATCH 2/2] kexec/s390: cleanup: Remove non-existent header file include Zhang Yanfei
2013-05-25 23:24 ` [PATCH 1/2] kexec/s390: cleanup: Fix a mistaken comment Simon Horman
0 siblings, 2 replies; 5+ messages in thread
From: Zhang Yanfei @ 2013-05-25 14:32 UTC (permalink / raw)
To: Simon Horman; +Cc: kexec@lists.infradead.org
From: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
When borrowing codes from ia64 architecture, this comment was
forgotten to be change. So fix it.
Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
---
kexec/arch/s390/kexec-s390.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/kexec/arch/s390/kexec-s390.h b/kexec/arch/s390/kexec-s390.h
index ee62888..ef53b11 100644
--- a/kexec/arch/s390/kexec-s390.h
+++ b/kexec/arch/s390/kexec-s390.h
@@ -34,4 +34,4 @@ extern int get_memory_ranges_s390(struct memory_range range[], int *ranges,
int with_crashk);
extern int command_line_add(const char *str);
-#endif /* KEXEC_IA64_H */
+#endif /* KEXEC_S390_H */
--
1.7.1
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] kexec/s390: cleanup: Remove non-existent header file include
2013-05-25 14:32 [PATCH 1/2] kexec/s390: cleanup: Fix a mistaken comment Zhang Yanfei
@ 2013-05-25 14:34 ` Zhang Yanfei
2013-05-25 23:34 ` Simon Horman
2013-05-25 23:24 ` [PATCH 1/2] kexec/s390: cleanup: Fix a mistaken comment Simon Horman
1 sibling, 1 reply; 5+ messages in thread
From: Zhang Yanfei @ 2013-05-25 14:34 UTC (permalink / raw)
To: Simon Horman; +Cc: kexec@lists.infradead.org
From: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
There is no elf.h in this directory, so remove the useless
include.
Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
---
kexec/arch/s390/kexec-image.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/kexec/arch/s390/kexec-image.c b/kexec/arch/s390/kexec-image.c
index d3af800..e49b75b 100644
--- a/kexec/arch/s390/kexec-image.c
+++ b/kexec/arch/s390/kexec-image.c
@@ -21,7 +21,6 @@
#include "../../kexec-syscall.h"
#include "../../kexec/crashdump.h"
#include "kexec-s390.h"
-#include "elf.h"
#include <arch/options.h>
static uint64_t crash_base, crash_end;
--
1.7.1
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] kexec/s390: cleanup: Fix a mistaken comment
2013-05-25 14:32 [PATCH 1/2] kexec/s390: cleanup: Fix a mistaken comment Zhang Yanfei
2013-05-25 14:34 ` [PATCH 2/2] kexec/s390: cleanup: Remove non-existent header file include Zhang Yanfei
@ 2013-05-25 23:24 ` Simon Horman
2013-05-25 23:26 ` Simon Horman
1 sibling, 1 reply; 5+ messages in thread
From: Simon Horman @ 2013-05-25 23:24 UTC (permalink / raw)
To: Zhang Yanfei; +Cc: kexec@lists.infradead.org
On Sat, May 25, 2013 at 10:32:49PM +0800, Zhang Yanfei wrote:
> From: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
>
> When borrowing codes from ia64 architecture, this comment was
> forgotten to be change. So fix it.
>
> Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
Reviewed-by: Simon Horman <horms@verge.net.au>
> ---
> kexec/arch/s390/kexec-s390.h | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/kexec/arch/s390/kexec-s390.h b/kexec/arch/s390/kexec-s390.h
> index ee62888..ef53b11 100644
> --- a/kexec/arch/s390/kexec-s390.h
> +++ b/kexec/arch/s390/kexec-s390.h
> @@ -34,4 +34,4 @@ extern int get_memory_ranges_s390(struct memory_range range[], int *ranges,
> int with_crashk);
> extern int command_line_add(const char *str);
>
> -#endif /* KEXEC_IA64_H */
> +#endif /* KEXEC_S390_H */
> --
> 1.7.1
>
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] kexec/s390: cleanup: Fix a mistaken comment
2013-05-25 23:24 ` [PATCH 1/2] kexec/s390: cleanup: Fix a mistaken comment Simon Horman
@ 2013-05-25 23:26 ` Simon Horman
0 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-05-25 23:26 UTC (permalink / raw)
To: Zhang Yanfei; +Cc: kexec@lists.infradead.org
On Sun, May 26, 2013 at 08:24:19AM +0900, Simon Horman wrote:
> On Sat, May 25, 2013 at 10:32:49PM +0800, Zhang Yanfei wrote:
> > From: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
> >
> > When borrowing codes from ia64 architecture, this comment was
> > forgotten to be change. So fix it.
> >
> > Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
>
> Reviewed-by: Simon Horman <horms@verge.net.au>
For some reason I thought this was a kernel patch.
As it is for kexec-tools I have applied it.
Thanks
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] kexec/s390: cleanup: Remove non-existent header file include
2013-05-25 14:34 ` [PATCH 2/2] kexec/s390: cleanup: Remove non-existent header file include Zhang Yanfei
@ 2013-05-25 23:34 ` Simon Horman
0 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-05-25 23:34 UTC (permalink / raw)
To: Zhang Yanfei; +Cc: kexec@lists.infradead.org
On Sat, May 25, 2013 at 10:34:01PM +0800, Zhang Yanfei wrote:
> From: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
>
> There is no elf.h in this directory, so remove the useless
> include.
>
> Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
Thanks, applied.
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-05-25 23:34 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-25 14:32 [PATCH 1/2] kexec/s390: cleanup: Fix a mistaken comment Zhang Yanfei
2013-05-25 14:34 ` [PATCH 2/2] kexec/s390: cleanup: Remove non-existent header file include Zhang Yanfei
2013-05-25 23:34 ` Simon Horman
2013-05-25 23:24 ` [PATCH 1/2] kexec/s390: cleanup: Fix a mistaken comment Simon Horman
2013-05-25 23:26 ` Simon Horman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox