From: Linus Torvalds Date: Sun, 15 Sep 2013 11:11:01 +0000 (-0400) Subject: vfs: fix typo in comment in recent dentry work X-Git-Tag: v3.12-rc1~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=05a8252bdefe9f2a8931c720afe6200671d631a6;p=platform%2Fkernel%2Flinux-exynos.git vfs: fix typo in comment in recent dentry work Sedat points out that I transposed some letters in "LRU" and wrote "RLU" instead in one of the new comments explaining the flow. Let's just fix it. Reported-by: Sedat Dilek Signed-off-by: Linus Torvalds --- diff --git a/fs/dcache.c b/fs/dcache.c index 62538e7..4100030 100644 --- a/fs/dcache.c +++ b/fs/dcache.c @@ -1435,7 +1435,7 @@ static enum d_walk_ret select_collect(void *_data, struct dentry *dentry) /* * We can't use d_lru_shrink_move() because we * need to get the global LRU lock and do the - * RLU accounting. + * LRU accounting. */ d_lru_del(dentry); d_shrink_add(dentry, &data->dispose);