LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] x86: fix pgprotval_t format string
@ 2018-04-10 8:43 Arnd Bergmann
2018-04-10 20:00 ` Dave Hansen
0 siblings, 1 reply; 2+ messages in thread
From: Arnd Bergmann @ 2018-04-10 8:43 UTC (permalink / raw)
To: Thomas Gleixner, Ingo Molnar, x86
Cc: Arnd Bergmann, H. Peter Anvin, Andrew Morton, Dave Hansen, linux-kernel
On 32-bit builds, pgprotval_t can be either 32-bit or 64-bit wide depending
on the page table layout. In the latter case, we now get a build warning:
In file included from arch/x86/include/asm/bug.h:83,
from include/linux/bug.h:5,
from include/linux/crypto.h:23,
from arch/x86/kernel/asm-offsets.c:9:
arch/x86/include/asm/pgtable.h: In function 'check_pgprot':
arch/x86/include/asm/pgtable.h:536:5: error: format '%lx' expects argument of type 'long unsigned int', but argument 2 has type 'pgprotval_t' {aka 'long long unsigned int'} [-Werror=format=]
To work around the problem, we can always print the value as a u64,
and add the respective cast.
Fixes: 64c80759408f ("x86/mm: Do not auto-massage page protections")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
arch/x86/include/asm/pgtable.h | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h
index 50b207289ae1..5f49b4ff0c24 100644
--- a/arch/x86/include/asm/pgtable.h
+++ b/arch/x86/include/asm/pgtable.h
@@ -533,11 +533,11 @@ static inline pgprotval_t check_pgprot(pgprot_t pgprot)
/* mmdebug.h can not be included here because of dependencies */
#ifdef CONFIG_DEBUG_VM
WARN_ONCE(pgprot_val(pgprot) != massaged_val,
- "attempted to set unsupported pgprot: %016lx "
- "bits: %016lx supported: %016lx\n",
- pgprot_val(pgprot),
- pgprot_val(pgprot) ^ massaged_val,
- __supported_pte_mask);
+ "attempted to set unsupported pgprot: %016llx "
+ "bits: %016llx supported: %016llx\n",
+ (u64)pgprot_val(pgprot),
+ (u64)pgprot_val(pgprot) ^ massaged_val,
+ (u64)__supported_pte_mask);
#endif
return massaged_val;
--
2.9.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] x86: fix pgprotval_t format string
2018-04-10 8:43 [PATCH] x86: fix pgprotval_t format string Arnd Bergmann
@ 2018-04-10 20:00 ` Dave Hansen
0 siblings, 0 replies; 2+ messages in thread
From: Dave Hansen @ 2018-04-10 20:00 UTC (permalink / raw)
To: Arnd Bergmann, Thomas Gleixner, Ingo Molnar, x86
Cc: H. Peter Anvin, Andrew Morton, linux-kernel
On 04/10/2018 01:43 AM, Arnd Bergmann wrote:
> --- a/arch/x86/include/asm/pgtable.h
> +++ b/arch/x86/include/asm/pgtable.h
> @@ -533,11 +533,11 @@ static inline pgprotval_t check_pgprot(pgprot_t pgprot)
> /* mmdebug.h can not be included here because of dependencies */
> #ifdef CONFIG_DEBUG_VM
> WARN_ONCE(pgprot_val(pgprot) != massaged_val,
> - "attempted to set unsupported pgprot: %016lx "
> - "bits: %016lx supported: %016lx\n",
> - pgprot_val(pgprot),
> - pgprot_val(pgprot) ^ massaged_val,
> - __supported_pte_mask);
> + "attempted to set unsupported pgprot: %016llx "
> + "bits: %016llx supported: %016llx\n",
> + (u64)pgprot_val(pgprot),
> + (u64)pgprot_val(pgprot) ^ massaged_val,
> + (u64)__supported_pte_mask);
> #endif
Whoops, I just sent a similar patch. I just used 'unsigned long long'
instead of u64. I'm fine with this as well, and don't prefer one over
the other, so:
Acked-by: Dave Hansen <dave.hansen@linux.intel.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-04-10 20:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-10 8:43 [PATCH] x86: fix pgprotval_t format string Arnd Bergmann
2018-04-10 20:00 ` Dave Hansen
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).