* 2.6.5+BK compile error: binfmt_elf on sparc64
@ 2004-04-14 8:33 Meelis Roos
2004-04-14 18:53 ` David S. Miller
0 siblings, 1 reply; 3+ messages in thread
From: Meelis Roos @ 2004-04-14 8:33 UTC (permalink / raw)
To: Linux Kernel list
Because of -Werror, it bails out:
In file included from arch/sparc64/kernel/binfmt_elf32.c:154:
fs/binfmt_elf.c: In function `load_elf_interp':
fs/binfmt_elf.c:369: warning: comparison is always false due to limited range of data type
fs/binfmt_elf.c: In function `load_elf_binary':
fs/binfmt_elf.c:780: warning: comparison is always false due to limited range of data type
It's the comparision "elf_ppnt->p_memsz > TASK_SIZE".
p_memsz is Elf32_Word, TASK_SIZE is defined as
#define TASK_SIZE ((unsigned long)-VPTE_SIZE)
At the first glance I can't see what's wrong here.
--
Meelis Roos (mroos@linux.ee)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: 2.6.5+BK compile error: binfmt_elf on sparc64
2004-04-14 8:33 2.6.5+BK compile error: binfmt_elf on sparc64 Meelis Roos
@ 2004-04-14 18:53 ` David S. Miller
2004-04-17 3:29 ` Herbert Poetzl
0 siblings, 1 reply; 3+ messages in thread
From: David S. Miller @ 2004-04-14 18:53 UTC (permalink / raw)
To: Meelis Roos; +Cc: linux-kernel
On Wed, 14 Apr 2004 11:33:00 +0300 (EEST)
Meelis Roos <mroos@linux.ee> wrote:
> Because of -Werror, it bails out:
>
> In file included from arch/sparc64/kernel/binfmt_elf32.c:154:
> fs/binfmt_elf.c: In function `load_elf_interp':
> fs/binfmt_elf.c:369: warning: comparison is always false due to limited range of data type
> fs/binfmt_elf.c: In function `load_elf_binary':
> fs/binfmt_elf.c:780: warning: comparison is always false due to limited range of data type
>
> It's the comparision "elf_ppnt->p_memsz > TASK_SIZE".
>
> p_memsz is Elf32_Word, TASK_SIZE is defined as
> #define TASK_SIZE ((unsigned long)-VPTE_SIZE)
>
> At the first glance I can't see what's wrong here.
The compiler is telling us that the condition is always false because a 32-bit
value can never have the codition being tested against a 64-bit one (TASK_SIZE).
I've tried everything to kill this warning, even casting both sides of the
conparison to 64-bit, but gcc can still see things clearly.
So just comment out the -Werror line in arch/sparc64/kernel/Makefile which is
how I'm (unfortunately) solving this for now.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: 2.6.5+BK compile error: binfmt_elf on sparc64
2004-04-14 18:53 ` David S. Miller
@ 2004-04-17 3:29 ` Herbert Poetzl
0 siblings, 0 replies; 3+ messages in thread
From: Herbert Poetzl @ 2004-04-17 3:29 UTC (permalink / raw)
To: David S. Miller; +Cc: Meelis Roos, linux-kernel
On Wed, Apr 14, 2004 at 11:53:01AM -0700, David S. Miller wrote:
> On Wed, 14 Apr 2004 11:33:00 +0300 (EEST)
> Meelis Roos <mroos@linux.ee> wrote:
>
> > Because of -Werror, it bails out:
> >
> > In file included from arch/sparc64/kernel/binfmt_elf32.c:154:
> > fs/binfmt_elf.c: In function `load_elf_interp':
> > fs/binfmt_elf.c:369: warning: comparison is always false due to limited range of data type
> > fs/binfmt_elf.c: In function `load_elf_binary':
> > fs/binfmt_elf.c:780: warning: comparison is always false due to limited range of data type
> >
> > It's the comparision "elf_ppnt->p_memsz > TASK_SIZE".
> >
> > p_memsz is Elf32_Word, TASK_SIZE is defined as
> > #define TASK_SIZE ((unsigned long)-VPTE_SIZE)
> >
> > At the first glance I can't see what's wrong here.
>
> The compiler is telling us that the condition is always false because a 32-bit
> value can never have the codition being tested against a 64-bit one (TASK_SIZE).
> I've tried everything to kill this warning, even casting both sides of the
> conparison to 64-bit, but gcc can still see things clearly.
>
> So just comment out the -Werror line in arch/sparc64/kernel/Makefile which is
> how I'm (unfortunately) solving this for now.
what about the good old
eppnt->p_memsz - TASK_SIZE > 0
HTH,
Herbert
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2004-04-17 3:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-14 8:33 2.6.5+BK compile error: binfmt_elf on sparc64 Meelis Roos
2004-04-14 18:53 ` David S. Miller
2004-04-17 3:29 ` Herbert Poetzl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox