lkml.org 
[lkml]   [2015]   [Mar]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 9/9] inode: don't softlockup when evicting inodes
Date
On a box with a lot of ram (148gb) I can make the box softlockup after running
an fs_mark job that creates hundreds of millions of empty files. This is
because we never generate enough memory pressure to keep the number of inodes on
our unused list low, so when we go to unmount we have to evict ~100 million
inodes. This makes one processor a very unhappy person, so add a cond_resched()
in dispose_list() and cond_resched_lock() in the eviction isolation function to
combat this. Thanks,

Signed-off-by: Josef Bacik <jbacik@fb.com>
---
fs/inode.c | 8 ++++++++
1 file changed, 8 insertions(+)

diff --git a/fs/inode.c b/fs/inode.c
index 17da8801..2191a3ce 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -569,6 +569,7 @@ static void dispose_list(struct list_head *head)
list_del_init(&inode->i_lru);

evict(inode);
+ cond_resched();
}
}

@@ -599,6 +600,13 @@ __evict_inodes_isolate(struct list_head *item, struct list_lru_one *lru,

list_lru_isolate(lru, item);
spin_unlock(&inode->i_lock);
+
+ /*
+ * We can have a ton of inodes to evict at unmount time, check to see if
+ * we need to go to sleep for a bit so we don't livelock.
+ */
+ if (cond_resched_lock(lock))
+ return LRU_REMOVED_RETRY;
return LRU_REMOVED;
}

--
1.9.3


\
 
 \ /
  Last update: 2015-03-10 21:01    [W:1.007 / U:0.012 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site