]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
quota: fix livelock in dquot_writeback_dquots
authorDmitry Monakhov <dmtrmonakhov@yandex-team.ru>
Thu, 31 Oct 2019 10:39:19 +0000 (10:39 +0000)
committerJan Kara <jack@suse.cz>
Thu, 31 Oct 2019 18:07:11 +0000 (19:07 +0100)
Write only quotas which are dirty at entry.

XFSTEST: https://github.com/dmonakhov/xfstests/commit/b10ad23566a5bf75832a6f500e1236084083cddc

Link: https://lore.kernel.org/r/20191031103920.3919-1-dmonakhov@openvz.org
CC: stable@vger.kernel.org
Signed-off-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
Signed-off-by: Dmitry Monakhov <dmtrmonakhov@yandex-team.ru>
Signed-off-by: Jan Kara <jack@suse.cz>
fs/quota/dquot.c

index 26812a67ed77bca0551604c3663d3cf7f334382f..b492b9ea829aac312f9a59163b61433a73433867 100644 (file)
@@ -622,7 +622,7 @@ EXPORT_SYMBOL(dquot_scan_active);
 /* Write all dquot structures to quota files */
 int dquot_writeback_dquots(struct super_block *sb, int type)
 {
-       struct list_head *dirty;
+       struct list_head dirty;
        struct dquot *dquot;
        struct quota_info *dqopt = sb_dqopt(sb);
        int cnt;
@@ -636,9 +636,10 @@ int dquot_writeback_dquots(struct super_block *sb, int type)
                if (!sb_has_quota_active(sb, cnt))
                        continue;
                spin_lock(&dq_list_lock);
-               dirty = &dqopt->info[cnt].dqi_dirty_list;
-               while (!list_empty(dirty)) {
-                       dquot = list_first_entry(dirty, struct dquot,
+               /* Move list away to avoid livelock. */
+               list_replace_init(&dqopt->info[cnt].dqi_dirty_list, &dirty);
+               while (!list_empty(&dirty)) {
+                       dquot = list_first_entry(&dirty, struct dquot,
                                                 dq_dirty);
 
                        WARN_ON(!test_bit(DQ_ACTIVE_B, &dquot->dq_flags));