]> git.sesse.net Git - bcachefs-tools-debian/blobdiff - libbcachefs/journal.c
Update bcachefs sources to e027cf9aa0 fixup! bcachefs: Defer checking of alloc -...
[bcachefs-tools-debian] / libbcachefs / journal.c
index eb556ecc511f987f0e1511c53148aa0c31652b20..d01b1cd4000d48e8fad2d69e0494613f2a5d9dcc 100644 (file)
 #include "journal.h"
 #include "journal_io.h"
 #include "journal_reclaim.h"
+#include "journal_sb.h"
 #include "journal_seq_blacklist.h"
-#include "super-io.h"
 
 #include <trace/events/bcachefs.h>
 
+#define x(n)   #n,
+static const char * const bch2_journal_watermarks[] = {
+       JOURNAL_WATERMARKS()
+       NULL
+};
+
+static const char * const bch2_journal_errors[] = {
+       JOURNAL_ERRORS()
+       NULL
+};
+#undef x
+
 static inline bool journal_seq_unwritten(struct journal *j, u64 seq)
 {
        return seq > j->seq_ondisk;
@@ -208,19 +220,19 @@ static int journal_entry_open(struct journal *j)
        BUG_ON(BCH_SB_CLEAN(c->disk_sb.sb));
 
        if (j->blocked)
-               return cur_entry_blocked;
+               return JOURNAL_ERR_blocked;
 
        if (j->cur_entry_error)
                return j->cur_entry_error;
 
        if (bch2_journal_error(j))
-               return cur_entry_insufficient_devices; /* -EROFS */
+               return JOURNAL_ERR_insufficient_devices; /* -EROFS */
 
        if (!fifo_free(&j->pin))
-               return cur_entry_journal_pin_full;
+               return JOURNAL_ERR_journal_pin_full;
 
        if (nr_unwritten_journal_entries(j) == ARRAY_SIZE(j->buf) - 1)
-               return cur_entry_max_in_flight;
+               return JOURNAL_ERR_max_in_flight;
 
        BUG_ON(!j->cur_entry_sectors);
 
@@ -239,7 +251,7 @@ static int journal_entry_open(struct journal *j)
        u64s = clamp_t(int, u64s, 0, JOURNAL_ENTRY_CLOSED_VAL - 1);
 
        if (u64s <= 0)
-               return cur_entry_journal_full;
+               return JOURNAL_ERR_journal_full;
 
        if (fifo_empty(&j->pin) && j->reclaim_thread)
                wake_up_process(j->reclaim_thread);
@@ -355,13 +367,12 @@ retry:
                return 0;
        }
 
-       if (!(flags & JOURNAL_RES_GET_RESERVED) &&
-           !test_bit(JOURNAL_MAY_GET_UNRESERVED, &j->flags)) {
+       if ((flags & JOURNAL_WATERMARK_MASK) < j->watermark) {
                /*
                 * Don't want to close current journal entry, just need to
                 * invoke reclaim:
                 */
-               ret = cur_entry_journal_full;
+               ret = JOURNAL_ERR_journal_full;
                goto unlock;
        }
 
@@ -379,10 +390,10 @@ retry:
        __journal_entry_close(j, JOURNAL_ENTRY_CLOSED_VAL);
        ret = journal_entry_open(j);
 
-       if (ret == cur_entry_max_in_flight)
+       if (ret == JOURNAL_ERR_max_in_flight)
                trace_journal_entry_full(c);
 unlock:
-       if ((ret && ret != cur_entry_insufficient_devices) &&
+       if ((ret && ret != JOURNAL_ERR_insufficient_devices) &&
            !j->res_get_blocked_start) {
                j->res_get_blocked_start = local_clock() ?: 1;
                trace_journal_full(c);
@@ -394,14 +405,15 @@ unlock:
        if (!ret)
                goto retry;
 
-       if ((ret == cur_entry_journal_full ||
-            ret == cur_entry_journal_pin_full) &&
+       if ((ret == JOURNAL_ERR_journal_full ||
+            ret == JOURNAL_ERR_journal_pin_full) &&
            !can_discard &&
            !nr_unwritten_journal_entries(j) &&
-           (flags & JOURNAL_RES_GET_RESERVED)) {
+           (flags & JOURNAL_WATERMARK_MASK) == JOURNAL_WATERMARK_reserved) {
                struct printbuf buf = PRINTBUF;
 
-               bch_err(c, "Journal stuck! Hava a pre-reservation but journal full");
+               bch_err(c, "Journal stuck! Hava a pre-reservation but journal full (ret %s)",
+                       bch2_journal_errors[ret]);
 
                bch2_journal_debug_to_text(&buf, j);
                bch_err(c, "%s", buf.buf);
@@ -419,8 +431,8 @@ unlock:
         * Journal is full - can't rely on reclaim from work item due to
         * freezing:
         */
-       if ((ret == cur_entry_journal_full ||
-            ret == cur_entry_journal_pin_full) &&
+       if ((ret == JOURNAL_ERR_journal_full ||
+            ret == JOURNAL_ERR_journal_pin_full) &&
            !(flags & JOURNAL_RES_GET_NONBLOCK)) {
                if (can_discard) {
                        bch2_journal_do_discards(j);
@@ -433,7 +445,7 @@ unlock:
                }
        }
 
-       return ret == cur_entry_insufficient_devices ? -EROFS : -EAGAIN;
+       return ret == JOURNAL_ERR_insufficient_devices ? -EROFS : -EAGAIN;
 }
 
 /*
@@ -768,28 +780,53 @@ static int __bch2_set_nr_journal_buckets(struct bch_dev *ca, unsigned nr,
 {
        struct bch_fs *c = ca->fs;
        struct journal_device *ja = &ca->journal;
-       struct bch_sb_field_journal *journal_buckets;
        u64 *new_bucket_seq = NULL, *new_buckets = NULL;
+       struct open_bucket **ob = NULL;
+       long *bu = NULL;
+       unsigned i, nr_got = 0, nr_want = nr - ja->nr;
+       unsigned old_nr                 = ja->nr;
+       unsigned old_discard_idx        = ja->discard_idx;
+       unsigned old_dirty_idx_ondisk   = ja->dirty_idx_ondisk;
+       unsigned old_dirty_idx          = ja->dirty_idx;
+       unsigned old_cur_idx            = ja->cur_idx;
        int ret = 0;
 
-       /* don't handle reducing nr of buckets yet: */
-       if (nr <= ja->nr)
-               return 0;
+       if (c) {
+               bch2_journal_block(&c->journal);
+               bch2_journal_flush_all_pins(&c->journal);
+       }
 
+       bu              = kzalloc(nr_want * sizeof(*bu), GFP_KERNEL);
+       ob              = kzalloc(nr_want * sizeof(*ob), GFP_KERNEL);
        new_buckets     = kzalloc(nr * sizeof(u64), GFP_KERNEL);
        new_bucket_seq  = kzalloc(nr * sizeof(u64), GFP_KERNEL);
-       if (!new_buckets || !new_bucket_seq) {
+       if (!bu || !ob || !new_buckets || !new_bucket_seq) {
                ret = -ENOMEM;
-               goto err;
+               goto err_unblock;
        }
 
-       journal_buckets = bch2_sb_resize_journal(&ca->disk_sb,
-                                       nr + sizeof(*journal_buckets) / sizeof(u64));
-       if (!journal_buckets) {
-               ret = -ENOSPC;
-               goto err;
+       for (nr_got = 0; nr_got < nr_want; nr_got++) {
+               if (new_fs) {
+                       bu[nr_got] = bch2_bucket_alloc_new_fs(ca);
+                       if (bu[nr_got] < 0) {
+                               ret = -ENOSPC;
+                               break;
+                       }
+               } else {
+                       ob[nr_got] = bch2_bucket_alloc(c, ca, RESERVE_none,
+                                              false, cl);
+                       if (IS_ERR(ob[nr_got])) {
+                               ret = cl ? -EAGAIN : -ENOSPC;
+                               break;
+                       }
+
+                       bu[nr_got] = ob[nr_got]->bucket;
+               }
        }
 
+       if (!nr_got)
+               goto err_unblock;
+
        /*
         * We may be called from the device add path, before the new device has
         * actually been added to the running filesystem:
@@ -802,51 +839,16 @@ static int __bch2_set_nr_journal_buckets(struct bch_dev *ca, unsigned nr,
        swap(new_buckets,       ja->buckets);
        swap(new_bucket_seq,    ja->bucket_seq);
 
-       if (!new_fs)
-               spin_unlock(&c->journal.lock);
-
-       while (ja->nr < nr) {
-               struct open_bucket *ob = NULL;
-               unsigned pos;
-               long b;
-
-               if (new_fs) {
-                       b = bch2_bucket_alloc_new_fs(ca);
-                       if (b < 0) {
-                               ret = -ENOSPC;
-                               goto err;
-                       }
-               } else {
-                       rcu_read_lock();
-                       ob = bch2_bucket_alloc(c, ca, RESERVE_NONE,
-                                              false, cl);
-                       rcu_read_unlock();
-                       if (IS_ERR(ob)) {
-                               ret = cl ? -EAGAIN : -ENOSPC;
-                               goto err;
-                       }
-
-                       b = ob->bucket;
-               }
-
-               if (c)
-                       spin_lock(&c->journal.lock);
+       for (i = 0; i < nr_got; i++) {
+               unsigned pos = ja->discard_idx ?: ja->nr;
+               long b = bu[i];
 
-               /*
-                * XXX
-                * For resize at runtime, we should be writing the new
-                * superblock before inserting into the journal array
-                */
-
-               pos = ja->discard_idx ?: ja->nr;
                __array_insert_item(ja->buckets,                ja->nr, pos);
                __array_insert_item(ja->bucket_seq,             ja->nr, pos);
-               __array_insert_item(journal_buckets->buckets,   ja->nr, pos);
                ja->nr++;
 
                ja->buckets[pos] = b;
                ja->bucket_seq[pos] = 0;
-               journal_buckets->buckets[pos] = cpu_to_le64(b);
 
                if (pos <= ja->discard_idx)
                        ja->discard_idx = (ja->discard_idx + 1) % ja->nr;
@@ -856,29 +858,56 @@ static int __bch2_set_nr_journal_buckets(struct bch_dev *ca, unsigned nr,
                        ja->dirty_idx = (ja->dirty_idx + 1) % ja->nr;
                if (pos <= ja->cur_idx)
                        ja->cur_idx = (ja->cur_idx + 1) % ja->nr;
+       }
+
+       ret = bch2_journal_buckets_to_sb(c, ca);
+       if (ret) {
+               /* Revert: */
+               swap(new_buckets,       ja->buckets);
+               swap(new_bucket_seq,    ja->bucket_seq);
+               ja->nr                  = old_nr;
+               ja->discard_idx         = old_discard_idx;
+               ja->dirty_idx_ondisk    = old_dirty_idx_ondisk;
+               ja->dirty_idx           = old_dirty_idx;
+               ja->cur_idx             = old_cur_idx;
+       }
+
+       if (!new_fs)
+               spin_unlock(&c->journal.lock);
+
+       if (c)
+               bch2_journal_unblock(&c->journal);
 
-               if (c)
-                       spin_unlock(&c->journal.lock);
+       if (ret)
+               goto err;
 
-               if (!new_fs) {
+       if (!new_fs) {
+               for (i = 0; i < nr_got; i++) {
                        ret = bch2_trans_do(c, NULL, NULL, BTREE_INSERT_NOFAIL,
                                bch2_trans_mark_metadata_bucket(&trans, ca,
-                                               b, BCH_DATA_journal,
+                                               bu[i], BCH_DATA_journal,
                                                ca->mi.bucket_size));
-
-                       bch2_open_bucket_put(c, ob);
-
-                       if (ret)
+                       if (ret) {
+                               bch2_fs_inconsistent(c, "error marking new journal buckets: %i", ret);
                                goto err;
+                       }
                }
        }
 err:
-       bch2_sb_resize_journal(&ca->disk_sb,
-               ja->nr + sizeof(*journal_buckets) / sizeof(u64));
+       if (ob && !new_fs)
+               for (i = 0; i < nr_got; i++)
+                       bch2_open_bucket_put(c, ob[i]);
+
        kfree(new_bucket_seq);
        kfree(new_buckets);
+       kfree(ob);
+       kfree(bu);
 
        return ret;
+err_unblock:
+       if (c)
+               bch2_journal_unblock(&c->journal);
+       goto err;
 }
 
 /*
@@ -891,11 +920,15 @@ int bch2_set_nr_journal_buckets(struct bch_fs *c, struct bch_dev *ca,
        struct journal_device *ja = &ca->journal;
        struct closure cl;
        unsigned current_nr;
-       int ret;
+       int ret = 0;
+
+       /* don't handle reducing nr of buckets yet: */
+       if (nr < ja->nr)
+               return 0;
 
        closure_init_stack(&cl);
 
-       do {
+       while (ja->nr != nr && (ret == 0 || ret == -EAGAIN)) {
                struct disk_reservation disk_res = { 0, 0 };
 
                closure_sync(&cl);
@@ -923,7 +956,7 @@ int bch2_set_nr_journal_buckets(struct bch_fs *c, struct bch_dev *ca,
                if (ja->nr != current_nr)
                        bch2_write_super(c);
                mutex_unlock(&c->sb_lock);
-       } while (ret == -EAGAIN);
+       }
 
        return ret;
 }
@@ -931,6 +964,7 @@ int bch2_set_nr_journal_buckets(struct bch_fs *c, struct bch_dev *ca,
 int bch2_dev_journal_alloc(struct bch_dev *ca)
 {
        unsigned nr;
+       int ret;
 
        if (dynamic_fault("bcachefs:add:journal_alloc"))
                return -ENOMEM;
@@ -947,7 +981,15 @@ int bch2_dev_journal_alloc(struct bch_dev *ca)
                     min(1 << 13,
                         (1 << 24) / ca->mi.bucket_size));
 
-       return __bch2_set_nr_journal_buckets(ca, nr, true, NULL);
+       if (ca->fs)
+               mutex_lock(&ca->fs->sb_lock);
+
+       ret = __bch2_set_nr_journal_buckets(ca, nr, true, NULL);
+
+       if (ca->fs)
+               mutex_unlock(&ca->fs->sb_lock);
+
+       return ret;
 }
 
 /* startup/shutdown: */
@@ -1092,9 +1134,20 @@ int bch2_dev_journal_init(struct bch_dev *ca, struct bch_sb *sb)
        struct journal_device *ja = &ca->journal;
        struct bch_sb_field_journal *journal_buckets =
                bch2_sb_get_journal(sb);
+       struct bch_sb_field_journal_v2 *journal_buckets_v2 =
+               bch2_sb_get_journal_v2(sb);
        unsigned i;
 
-       ja->nr = bch2_nr_journal_buckets(journal_buckets);
+       ja->nr = 0;
+
+       if (journal_buckets_v2) {
+               unsigned nr = bch2_sb_field_journal_v2_nr_entries(journal_buckets_v2);
+
+               for (i = 0; i < nr; i++)
+                       ja->nr += le64_to_cpu(journal_buckets_v2->d[i].nr);
+       } else if (journal_buckets) {
+               ja->nr = bch2_nr_journal_buckets(journal_buckets);
+       }
 
        ja->bucket_seq = kcalloc(ja->nr, sizeof(u64), GFP_KERNEL);
        if (!ja->bucket_seq)
@@ -1109,8 +1162,18 @@ int bch2_dev_journal_init(struct bch_dev *ca, struct bch_sb *sb)
        if (!ja->buckets)
                return -ENOMEM;
 
-       for (i = 0; i < ja->nr; i++)
-               ja->buckets[i] = le64_to_cpu(journal_buckets->buckets[i]);
+       if (journal_buckets_v2) {
+               unsigned nr = bch2_sb_field_journal_v2_nr_entries(journal_buckets_v2);
+               unsigned j, dst = 0;
+
+               for (i = 0; i < nr; i++)
+                       for (j = 0; j < le64_to_cpu(journal_buckets_v2->d[i].nr); j++)
+                               ja->buckets[dst++] =
+                                       le64_to_cpu(journal_buckets_v2->d[i].start) + j;
+       } else if (journal_buckets) {
+               for (i = 0; i < ja->nr; i++)
+                       ja->buckets[i] = le64_to_cpu(journal_buckets->buckets[i]);
+       }
 
        return 0;
 }
@@ -1185,13 +1248,14 @@ void __bch2_journal_debug_to_text(struct printbuf *out, struct journal *j)
        rcu_read_lock();
        s = READ_ONCE(j->reservations);
 
-       pr_buf(out, "dirty journal entries:\t%llu\n",   fifo_used(&j->pin));
+       pr_buf(out, "dirty journal entries:\t%llu/%llu\n",fifo_used(&j->pin), j->pin.size);
        pr_buf(out, "seq:\t\t\t%llu\n",                 journal_cur_seq(j));
        pr_buf(out, "seq_ondisk:\t\t%llu\n",            j->seq_ondisk);
        pr_buf(out, "last_seq:\t\t%llu\n",              journal_last_seq(j));
        pr_buf(out, "last_seq_ondisk:\t%llu\n",         j->last_seq_ondisk);
        pr_buf(out, "flushed_seq_ondisk:\t%llu\n",      j->flushed_seq_ondisk);
        pr_buf(out, "prereserved:\t\t%u/%u\n",          j->prereserved.reserved, j->prereserved.remaining);
+       pr_buf(out, "watermark:\t\t%s\n",               bch2_journal_watermarks[j->watermark]);
        pr_buf(out, "each entry reserved:\t%u\n",       j->entry_u64s_reserved);
        pr_buf(out, "nr flush writes:\t%llu\n",         j->nr_flush_writes);
        pr_buf(out, "nr noflush writes:\t%llu\n",       j->nr_noflush_writes);
@@ -1201,7 +1265,7 @@ void __bch2_journal_debug_to_text(struct printbuf *out, struct journal *j)
        pr_buf(out, "reclaim runs in:\t%u ms\n",        time_after(j->next_reclaim, now)
               ? jiffies_to_msecs(j->next_reclaim - jiffies) : 0);
        pr_buf(out, "current entry sectors:\t%u\n",     j->cur_entry_sectors);
-       pr_buf(out, "current entry error:\t%u\n",       j->cur_entry_error);
+       pr_buf(out, "current entry error:\t%s\n",       bch2_journal_errors[j->cur_entry_error]);
        pr_buf(out, "current entry:\t\t");
 
        switch (s.cur_entry_offset) {