From: Helge Deller <deller@gmx.de>
To: Simon Horman <horms@verge.net.au>, kexec@lists.infradead.org
Cc: Sven Schnelle <svens@stackframe.org>
Subject: [PATCH] kexec-tools: Fix conversion overflow when compiling on 32-bit platforms
Date: Tue, 1 Oct 2019 17:14:16 +0200 [thread overview]
Message-ID: <20191001151416.GA25667@ls3530.fritz.box> (raw)
When compiling kexec-tools on a 32-bit platform, assigning an
(unsigned long long) value to an (unsigned long) variable creates
this warning:
elf_info.c: In function 'read_phys_offset_elf_kcore':
elf_info.c:805:14: warning: conversion from 'long long unsigned int' to 'long unsigned int' changes value from '18446744073709551615' to '4294967295'
805 | *phys_off = UINT64_MAX;
| ^~~~~~~~~~
Fix it by casting UINT64_MAX to (unsigned long) before storing it to *phys_off.
Signed-off-by: Helge Deller <deller@gmx.de>
diff --git a/util_lib/elf_info.c b/util_lib/elf_info.c
index 2bce5cb..4d16983 100644
--- a/util_lib/elf_info.c
+++ b/util_lib/elf_info.c
@@ -802,7 +802,7 @@ int read_phys_offset_elf_kcore(int fd, unsigned long *phys_off)
{
int ret;
- *phys_off = UINT64_MAX;
+ *phys_off = (unsigned long) UINT64_MAX;
ret = read_elf(fd);
if (!ret) {
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
next reply other threads:[~2019-10-01 15:14 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-01 15:14 Helge Deller [this message]
2019-10-03 8:14 ` [PATCH] kexec-tools: Fix conversion overflow when compiling on 32-bit platforms Simon Horman
2019-10-03 8:52 ` Helge Deller
2019-10-04 9:37 ` Simon Horman
2019-10-04 9:51 ` Helge Deller
2019-10-04 10:14 ` Simon Horman
2019-10-04 11:01 ` Helge Deller
2019-10-07 7:12 ` Simon Horman
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=20191001151416.GA25667@ls3530.fritz.box \
--to=deller@gmx.de \
--cc=horms@verge.net.au \
--cc=kexec@lists.infradead.org \
--cc=svens@stackframe.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