mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
lru_cache.h: fix comments referring to ts_ instead of lc_
For some time we contemplated calling the "struct lru_cache" a "struct tracked_set", and some comments kept the ts_ prefix. Fix those to match the member field names. Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
This commit is contained in:
committed by
Philipp Reisner
parent
4738fa1690
commit
0097f0405d
@@ -378,7 +378,7 @@ struct lc_element *lc_get(struct lru_cache *lc, unsigned int enr)
|
|||||||
/* it was not present in the active set.
|
/* it was not present in the active set.
|
||||||
* we are going to recycle an unused (or even "free") element.
|
* we are going to recycle an unused (or even "free") element.
|
||||||
* user may need to commit a transaction to record that change.
|
* user may need to commit a transaction to record that change.
|
||||||
* we serialize on flags & TF_DIRTY */
|
* we serialize on flags & LC_DIRTY */
|
||||||
if (test_and_set_bit(__LC_DIRTY, &lc->flags)) {
|
if (test_and_set_bit(__LC_DIRTY, &lc->flags)) {
|
||||||
++lc->dirty;
|
++lc->dirty;
|
||||||
RETURN(NULL);
|
RETURN(NULL);
|
||||||
|
Reference in New Issue
Block a user