diff options
author | Colin Ian King <[email protected]> | 2016-06-24 14:50:21 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2016-06-24 17:23:52 -0700 |
commit | 7c5b7239465932400ee0825bcc90624717c1af19 (patch) | |
tree | 551309cddd2714919816e59a2adcff8ade7f060b | |
parent | 63d2f95d63396059200c391ca87161897b99e74a (diff) |
tools/vm/slabinfo: fix spelling mistake: "Ocurrences" -> "Occurrences"
trivial fix to spelling mistake
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Colin Ian King <[email protected]>
Acked-by: Christoph Lameter <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | tools/vm/slabinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/vm/slabinfo.c b/tools/vm/slabinfo.c index 1889163f2f05..7cf6e1769903 100644 --- a/tools/vm/slabinfo.c +++ b/tools/vm/slabinfo.c @@ -492,7 +492,7 @@ static void slab_stats(struct slabinfo *s) s->deactivate_to_head + s->deactivate_to_tail + s->deactivate_bypass; if (total) { - printf("\nSlab Deactivation Ocurrences %%\n"); + printf("\nSlab Deactivation Occurrences %%\n"); printf("-------------------------------------------------\n"); printf("Slab full %7lu %3lu%%\n", s->deactivate_full, (s->deactivate_full * 100) / total); |