From 17c6025cb7871763c5710a3f115376918d968088 Mon Sep 17 00:00:00 2001 From: Mark Fasheh Date: Tue, 26 Sep 2017 12:28:41 -0500 Subject: [PATCH] scoutfs: clean up some comments in lock.c We finished the lock lru work and can remove these TODO comments. Signed-off-by: Mark Fasheh --- kmod/src/lock.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/kmod/src/lock.c b/kmod/src/lock.c index acd60e6c..d89ea6ac 100644 --- a/kmod/src/lock.c +++ b/kmod/src/lock.c @@ -173,7 +173,6 @@ static int ino_lock_downconvert(struct ocfs2_lock_res *lockres, int blocking) static struct ocfs2_lock_res_ops scoufs_ino_lops = { .get_osb = get_ino_lock_osb, .downconvert_worker = ino_lock_downconvert, - /* XXX: .post_unlock for lru */ /* XXX: .check_downconvert that queries the item cache for dirty items */ .flags = LOCK_TYPE_REQUIRES_REFRESH, }; @@ -181,14 +180,12 @@ static struct ocfs2_lock_res_ops scoufs_ino_lops = { static struct ocfs2_lock_res_ops scoufs_ino_index_lops = { .get_osb = get_ino_lock_osb, .downconvert_worker = ino_lock_downconvert, - /* XXX: .post_unlock for lru */ /* XXX: .check_downconvert that queries the item cache for dirty items */ .flags = 0, }; static struct ocfs2_lock_res_ops scoutfs_global_lops = { .get_osb = get_ino_lock_osb, - /* XXX: .post_unlock for lru */ /* XXX: .check_downconvert that queries the item cache for dirty items */ .flags = 0, };