From: Luiz Capitulino Date: Mon, 7 Apr 2014 22:38:32 +0000 (-0700) Subject: fs/proc/meminfo: meminfo_proc_show(): fix typo in comment X-Git-Tag: v4.9.8~6596^2~71 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f0b5664ba770190fa528ba72f8f6294cca797103;p=platform%2Fkernel%2Flinux-rpi3.git fs/proc/meminfo: meminfo_proc_show(): fix typo in comment It should read "reclaimable slab" and not "reclaimable swap". Signed-off-by: Luiz Capitulino Reviewed-by: Rik van Riel Acked-by: Rafael Aquini Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/proc/meminfo.c b/fs/proc/meminfo.c index 136e548..7445af0 100644 --- a/fs/proc/meminfo.c +++ b/fs/proc/meminfo.c @@ -73,7 +73,7 @@ static int meminfo_proc_show(struct seq_file *m, void *v) available += pagecache; /* - * Part of the reclaimable swap consists of items that are in use, + * Part of the reclaimable slab consists of items that are in use, * and cannot be freed. Cap this estimate at the low watermark. */ available += global_page_state(NR_SLAB_RECLAIMABLE) -