* Re: parisc: adjust L1_CACHE_BYTES to 128 bytes on PA8800 and PA8900 CPUs
@ 2015-09-03 9:23 Andreas Ziegler
2015-09-03 18:45 ` Helge Deller
0 siblings, 1 reply; 2+ messages in thread
From: Andreas Ziegler @ 2015-09-03 9:23 UTC (permalink / raw)
To: Helge Deller
Cc: linux-parisc, Valentin Rothberg, Paul Bolle, linux-kernel,
John David Anglin
Hi Helge,
today's linux-next tree (next-20150903) contains commit 20f924902ff6
("parisc: adjust L1_CACHE_BYTES to 128 bytes on PA8800 and PA8900 CPUs")
which you authored.
I noticed it because we[0] are running a daily analysis on all commits
in linux-next as part of our research and our tools reported it.
In the patch, you create the following #if defined() structure in
arch/parisc/include/asm/cache.h (lines 16 and following):
#if defined(CONFIG_PA8X00)
...
#elif defined(CONFIG_PA20)
...
#else
...
#endif
In Kconfig, CONFIG_PA20 is defined as the following
(arch/parisc/Kconfig, line 163):
config PA20
def_bool y
depends on PA8X00
This means that CONFIG_PA20 can and will only be enabled if
CONFIG_PA8X00 has already been enabled, which means that the contents of
the "#elif defined(CONFIG_PA20)" block can never be reached: its
condition is only evaluated if CONFIG_PA8X00 is disabled, but then
CONFIG_PA20 can never be enabled either.
Best regards,
Andreas
[0] https://cados.cs.fau.de
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: parisc: adjust L1_CACHE_BYTES to 128 bytes on PA8800 and PA8900 CPUs
2015-09-03 9:23 parisc: adjust L1_CACHE_BYTES to 128 bytes on PA8800 and PA8900 CPUs Andreas Ziegler
@ 2015-09-03 18:45 ` Helge Deller
0 siblings, 0 replies; 2+ messages in thread
From: Helge Deller @ 2015-09-03 18:45 UTC (permalink / raw)
To: Andreas Ziegler
Cc: linux-parisc, Valentin Rothberg, Paul Bolle, linux-kernel,
John David Anglin
Hi Andreas,
On 03.09.2015 11:23, Andreas Ziegler wrote:
> today's linux-next tree (next-20150903) contains commit 20f924902ff6
> ("parisc: adjust L1_CACHE_BYTES to 128 bytes on PA8800 and PA8900 CPUs")
> which you authored.
>
> I noticed it because we[0] are running a daily analysis on all commits
> in linux-next as part of our research and our tools reported it.
>
> In the patch, you create the following #if defined() structure in
> arch/parisc/include/asm/cache.h (lines 16 and following):
>
> #if defined(CONFIG_PA8X00)
> ...
> #elif defined(CONFIG_PA20)
> ...
> #else
> ...
> #endif
>
> In Kconfig, CONFIG_PA20 is defined as the following
> (arch/parisc/Kconfig, line 163):
>
> config PA20
> def_bool y
> depends on PA8X00
>
> This means that CONFIG_PA20 can and will only be enabled if
> CONFIG_PA8X00 has already been enabled, which means that the contents of
> the "#elif defined(CONFIG_PA20)" block can never be reached: its
> condition is only evaluated if CONFIG_PA8X00 is disabled, but then
> CONFIG_PA20 can never be enabled either.
That's absolutely true.
I'll fix it with the next iteration of this patch.
Thanks,
Helge
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-09-03 18:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-03 9:23 parisc: adjust L1_CACHE_BYTES to 128 bytes on PA8800 and PA8900 CPUs Andreas Ziegler
2015-09-03 18:45 ` Helge Deller
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).