···535535536536 bch2_trans_init(&trans, c, 0, 0);537537538538- for (i = 0; i < btree_id_nr_alive(c)&& !ret; i++) {538538+ for (i = 0; i < btree_id_nr_alive(c) && !ret; i++) {539539 struct btree_root *r = bch2_btree_id_root(c, i);540540541541 if (!r->alive)
···10081008 /*10091009 * We used to assert that all paths had been traversed here10101010 * (path->uptodate < BTREE_ITER_NEED_TRAVERSE); however, since10111011- * path->Should_be_locked is not set yet, we we might have unlocked and10111011+ * path->should_be_locked is not set yet, we might have unlocked and10121012 * then failed to relock a path - that's fine.10131013 */10141014err:···27382738 unsigned depth,27392739 unsigned flags)27402740{27412741- flags |= BTREE_ITER_NOT_EXTENTS;27422742- flags |= __BTREE_ITER_ALL_SNAPSHOTS;27432743- flags |= BTREE_ITER_ALL_SNAPSHOTS;27412741+ flags |= BTREE_ITER_NOT_EXTENTS;27422742+ flags |= __BTREE_ITER_ALL_SNAPSHOTS;27432743+ flags |= BTREE_ITER_ALL_SNAPSHOTS;2744274427452745 bch2_trans_iter_init_common(trans, iter, btree_id, pos, locks_want, depth,27462746 __bch2_btree_iter_flags(trans, btree_id, flags),
···345345 list_del_init(&pin->list);346346347347 /*348348- * Unpinning a journal entry make make journal_next_bucket() succeed, if348348+ * Unpinning a journal entry may make journal_next_bucket() succeed, if349349 * writing a new last_seq will now make another bucket available:350350 */351351 return atomic_dec_and_test(&pin_list->count) &&
···467467 s64 last_change;468468 s64 last_target;469469470470- /* If true, the rate will not increase if bch2_ratelimit_delay()471471- * is not being called often enough. */470470+ /*471471+ * If true, the rate will not increase if bch2_ratelimit_delay()472472+ * is not being called often enough.473473+ */472474 bool backpressure;473475};474476···606604{607605#ifdef CONFIG_X86_64608606 long d0, d1, d2;607607+609608 asm volatile("rep ; movsq"610609 : "=&c" (d0), "=&D" (d1), "=&S" (d2)611610 : "0" (u64s), "1" (dst), "2" (src)···683680684681#ifdef CONFIG_X86_64685682 long d0, d1, d2;683683+686684 asm volatile("std ;\n"687685 "rep ; movsq\n"688686 "cld ;\n"
+1
fs/bcachefs/varint.c
···59596060 if (likely(bytes < 9)) {6161 __le64 v_le = 0;6262+6263 memcpy(&v_le, in, bytes);6364 v = le64_to_cpu(v_le);6465 v >>= bytes;