diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-15 07:11:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-15 07:11:01 -0400 |
commit | 05a8252bdefe9f2a8931c720afe6200671d631a6 (patch) | |
tree | 89156319f026e7023bc0a711a754d408ddbf9bec /fs | |
parent | 6b02fa59a7cf34c548eedee657b07ea6c54d3894 (diff) | |
download | op-kernel-dev-05a8252bdefe9f2a8931c720afe6200671d631a6.zip op-kernel-dev-05a8252bdefe9f2a8931c720afe6200671d631a6.tar.gz |
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 <sedat.dilek@jpberlin.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/dcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |