Skip to content

Commit 6f1d34b

Browse files
Sebastian Andrzej Siewiortorvalds
authored andcommitted
Documentation/kcov: define `ip' in the example
The example code uses the variable `ip' but never declares it. Declare `ip' as a 64bit variable which is the same type as the array from which it loads its value. Link: https://lkml.kernel.org/r/[email protected] Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Sebastian Andrzej Siewior <[email protected]> Acked-by: Dmitry Vyukov <[email protected]> Acked-by: Marco Elver <[email protected]> Tested-by: Marco Elver <[email protected]> Reviewed-by: Andrey Konovalov <[email protected]> Cc: Clark Williams <[email protected]> Cc: Steven Rostedt <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent d687a9c commit 6f1d34b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Documentation/dev-tools/kcov.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,8 @@ Comparison operands collection is similar to coverage collection:
178178
/* Read number of comparisons collected. */
179179
n = __atomic_load_n(&cover[0], __ATOMIC_RELAXED);
180180
for (i = 0; i < n; i++) {
181+
uint64_t ip;
182+
181183
type = cover[i * KCOV_WORDS_PER_CMP + 1];
182184
/* arg1 and arg2 - operands of the comparison. */
183185
arg1 = cover[i * KCOV_WORDS_PER_CMP + 2];

0 commit comments

Comments
 (0)