Use %pS for actual addresses, otherwise you'll get bad output on arches like ppc64 where %pF expects a function descriptor.
Signed-off-by: Scott Wood <[email protected]> Cc: "Theodore Ts'o" <[email protected]> --- drivers/char/random.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/char/random.c b/drivers/char/random.c index 9cd6968..9072db1 100644 --- a/drivers/char/random.c +++ b/drivers/char/random.c @@ -1234,7 +1234,7 @@ void get_random_bytes(void *buf, int nbytes) { #if DEBUG_RANDOM_BOOT > 0 if (unlikely(nonblocking_pool.initialized == 0)) - printk(KERN_NOTICE "random: %pF get_random_bytes called " + printk(KERN_NOTICE "random: %pS get_random_bytes called " "with %d bits of entropy available\n", (void *) _RET_IP_, nonblocking_pool.entropy_total); -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

