diff options
-rw-r--r-- | Documentation/printk-formats.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Documentation/printk-formats.txt b/Documentation/printk-formats.txt index 361789df51ec..71b62db7eca2 100644 --- a/Documentation/printk-formats.txt +++ b/Documentation/printk-formats.txt | |||
@@ -85,13 +85,12 @@ Examples:: | |||
85 | printk("Faulted at %pS\n", (void *)regs->ip); | 85 | printk("Faulted at %pS\n", (void *)regs->ip); |
86 | printk(" %s%pB\n", (reliable ? "" : "? "), (void *)*stack); | 86 | printk(" %s%pB\n", (reliable ? "" : "? "), (void *)*stack); |
87 | 87 | ||
88 | |||
89 | Kernel Pointers | 88 | Kernel Pointers |
90 | =============== | 89 | =============== |
91 | 90 | ||
92 | :: | 91 | :: |
93 | 92 | ||
94 | %pK 0x01234567 or 0x0123456789abcdef | 93 | %pK 01234567 or 0123456789abcdef |
95 | 94 | ||
96 | For printing kernel pointers which should be hidden from unprivileged | 95 | For printing kernel pointers which should be hidden from unprivileged |
97 | users. The behaviour of ``%pK`` depends on the ``kptr_restrict sysctl`` - see | 96 | users. The behaviour of ``%pK`` depends on the ``kptr_restrict sysctl`` - see |