# git gc Expanding reachable commits in commit graph: 54600 Expanding reachable commits in commit graph: 112170 Expanding reachable commits in commit graph: 170557 Expanding reachable commits in commit graph: 230060 Expanding reachable commits in commit graph: 289005 Expanding reachable commits in commit graph: 349881 Expanding reachable commits in commit graph: 411019 Expanding reachable commits in commit graph: 472481 Expanding reachable commits in commit graph: 531105 Expanding reachable commits in commit graph: 593165 Expanding reachable commits in commit graph: 654857 Expanding reachable commits in commit graph: 715757 Expanding reachable commits in commit graph: 776354 Expanding reachable commits in commit graph: 836748 Expanding reachable commits in commit graph: 897359 Expanding reachable commits in commit graph: 958378 Expanding reachable commits in commit graph: 1019627 Expanding reachable commits in commit graph: 1074685 Expanding reachable commits in commit graph: 1137434 Expanding reachable commits in commit graph: 1201340 Expanding reachable commits in commit graph: 1268920 Expanding reachable commits in commit graph: 1289807, done. Writing out commit graph in 4 passes: 55% (2881275/5159228) Writing out commit graph in 4 passes: 56% (2889168/5159228) Writing out commit graph in 4 passes: 57% (2940760/5159228) Writing out commit graph in 4 passes: 58% (2992353/5159228) Writing out commit graph in 4 passes: 59% (3043945/5159228) Writing out commit graph in 4 passes: 60% (3095537/5159228) Writing out commit graph in 4 passes: 61% (3147130/5159228) Writing out commit graph in 4 passes: 62% (3198722/5159228) Writing out commit graph in 4 passes: 63% (3250314/5159228) Writing out commit graph in 4 passes: 64% (3301906/5159228) Writing out commit graph in 4 passes: 64% (3351570/5159228) Writing out commit graph in 4 passes: 65% (3353499/5159228) Writing out commit graph in 4 passes: 66% (3405091/5159228) Writing out commit graph in 4 passes: 67% (3456683/5159228) Writing out commit graph in 4 passes: 68% (3508276/5159228) Writing out commit graph in 4 passes: 69% (3559868/5159228) Writing out commit graph in 4 passes: 70% (3611460/5159228) Writing out commit graph in 4 passes: 71% (3663052/5159228) Writing out commit graph in 4 passes: 72% (3714645/5159228) Writing out commit graph in 4 passes: 73% (3766237/5159228) Writing out commit graph in 4 passes: 74% (3817829/5159228) Writing out commit graph in 4 passes: 74% (3824518/5159228) Writing out commit graph in 4 passes: 75% (3869421/5159228) Writing out commit graph in 4 passes: 76% (3921014/5159228) Writing out commit graph in 4 passes: 77% (3972606/5159228) Writing out commit graph in 4 passes: 78% (4024198/5159228) Writing out commit graph in 4 passes: 79% (4075791/5159228) Writing out commit graph in 4 passes: 80% (4127383/5159228) Writing out commit graph in 4 passes: 81% (4178975/5159228) Writing out commit graph in 4 passes: 82% (4230567/5159228) Writing out commit graph in 4 passes: 83% (4282160/5159228) Writing out commit graph in 4 passes: 84% (4333752/5159228) Writing out commit graph in 4 passes: 85% (4385344/5159228) Writing out commit graph in 4 passes: 86% (4436937/5159228) Writing out commit graph in 4 passes: 87% (4488529/5159228) Writing out commit graph in 4 passes: 88% (4540121/5159228) Writing out commit graph in 4 passes: 89% (4591713/5159228) Writing out commit graph in 4 passes: 90% (4643306/5159228) Writing out commit graph in 4 passes: 91% (4694898/5159228) Writing out commit graph in 4 passes: 92% (4746490/5159228) Writing out commit graph in 4 passes: 93% (4798083/5159228) Writing out commit graph in 4 passes: 94% (4849675/5159228) Writing out commit graph in 4 passes: 95% (4901267/5159228) Writing out commit graph in 4 passes: 96% (4952859/5159228) Writing out commit graph in 4 passes: 97% (5004452/5159228) Writing out commit graph in 4 passes: 98% (5056044/5159228) Writing out commit graph in 4 passes: 99% (5107636/5159228) Writing out commit graph in 4 passes: 100% (5159228/5159228) Writing out commit graph in 4 passes: 100% (5159228/5159228), done. # git rev-parse -q --verify 720261cfc7329406a50c2a8536e0039b9dd9a4e5^{commit} # git fetch -q -n -f git://fs.ozlabs.ibm.com/kernel/linus master # git rev-parse -q --verify 720261cfc7329406a50c2a8536e0039b9dd9a4e5^{commit} 720261cfc7329406a50c2a8536e0039b9dd9a4e5 # git checkout -q -f -B kisskb 720261cfc7329406a50c2a8536e0039b9dd9a4e5 # git clean -qxdf # < git log -1 # commit 720261cfc7329406a50c2a8536e0039b9dd9a4e5 # Merge: 4f40c636b291 a97b43fac5b9 # Author: Linus Torvalds # Date: Thu Jul 18 17:27:43 2024 -0700 # # Merge tag 'bcachefs-2024-07-18.2' of https://evilpiepirate.org/git/bcachefs # # Pull bcachefs updates from Kent Overstreet: # # - Metadata version 1.8: Stripe sectors accounting, BCH_DATA_unstriped # # This splits out the accounting of dirty sectors and stripe sectors in # alloc keys; this lets us see stripe buckets that still have unstriped # data in them. # # This is needed for ensuring that erasure coding is working correctly, # as well as completing stripe creation after a crash. # # - Metadata version 1.9: Disk accounting rewrite # # The previous disk accounting scheme relied heavily on percpu counters # that were also sharded by outstanding journal buffer; it was fast but # not extensible or scalable, and meant that all accounting counters # were recorded in every journal entry. # # The new disk accounting scheme stores accounting as normal btree # keys; updates are deltas until they are flushed by the btree write # buffer. # # This means we have no practical limit on the number of counters, and # a new tagged union format that's easy to extend. # # We now have counters for compression type/ratio, per-snapshot-id # usage, per-btree-id usage, and pending rebalance work. # # - Self healing on read IO/checksum error # # Data is now automatically rewritten if we get a read error and then a # successful retry # # - Mount API conversion (thanks to Thomas Bertschinger) # # - Better lockdep coverage # # Previously, btree node locks were tracked individually by lockdep, # like any other lock. But we may take _many_ btree node locks # simultaneously, we easily blow through the limit of 48 locks that # lockdep can track, leading to lockdep turning itself off. # # Tracking each btree node lock individually isn't really necessary # since we have our own cycle detector for deadlock avoidance and # centralized tracking of btree node locks, so we now have a single # lockdep_map in btree_trans for "any btree nodes are locked". # # - Some more small incremental work towards online check_allocations # # - Lots more debugging improvements # # - Fixes, including: # - undefined behaviour fixes, originally noted as breaking userspace # LTO builds # - fix a spurious warning in fsck_err, reported by Marcin # - fix an integer overflow on trans->nr_updates, also reported by # Marcin; this broke during deletion of highly fragmented indirect # extents # # * tag 'bcachefs-2024-07-18.2' of https://evilpiepirate.org/git/bcachefs: (120 commits) # lockdep: Add comments for lockdep_set_no{validate,track}_class() # bcachefs: Fix integer overflow on trans->nr_updates # bcachefs: silence silly kdoc warning # bcachefs: Fix fsck warning about btree_trans not passed to fsck error # bcachefs: Add an error message for insufficient rw journal devs # bcachefs: varint: Avoid left-shift of a negative value # bcachefs: darray: Don't pass NULL to memcpy() # bcachefs: Kill bch2_assert_btree_nodes_not_locked() # bcachefs: Rename BCH_WRITE_DONE -> BCH_WRITE_SUBMITTED # bcachefs: __bch2_read(): call trans_begin() on every loop iter # bcachefs: show none if label is not set # bcachefs: drop packed, aligned from bkey_inode_buf # bcachefs: btree node scan: fall back to comparing by journal seq # bcachefs: Add lockdep support for btree node locks # lockdep: lockdep_set_notrack_class() # bcachefs: Improve copygc_wait_to_text() # bcachefs: Convert clock code to u64s # bcachefs: Improve startup message # bcachefs: Self healing on read IO error # bcachefs: Make read_only a mount option again, but hidden # ... # < /opt/cross/kisskb/korg/gcc-13.1.0-nolibc/sparc64-linux/bin/sparc64-linux-gcc --version # < /opt/cross/kisskb/korg/gcc-13.1.0-nolibc/sparc64-linux/bin/sparc64-linux-ld --version # < git log --format=%s --max-count=1 720261cfc7329406a50c2a8536e0039b9dd9a4e5 # make -s -j 160 ARCH=sparc64 O=/kisskb/build/linus_allnoconfig_sparc64-gcc13 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-13.1.0-nolibc/sparc64-linux/bin/sparc64-linux- allnoconfig # < make -s -j 160 ARCH=sparc64 O=/kisskb/build/linus_allnoconfig_sparc64-gcc13 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-13.1.0-nolibc/sparc64-linux/bin/sparc64-linux- help # make -s -j 160 ARCH=sparc64 O=/kisskb/build/linus_allnoconfig_sparc64-gcc13 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-13.1.0-nolibc/sparc64-linux/bin/sparc64-linux- olddefconfig # make -s -j 160 ARCH=sparc64 O=/kisskb/build/linus_allnoconfig_sparc64-gcc13 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-13.1.0-nolibc/sparc64-linux/bin/sparc64-linux- :1519:2: warning: #warning syscall clone3 not implemented [-Wcpp] /kisskb/src/arch/sparc/vdso/vclock_gettime.c:254:1: warning: no previous prototype for '__vdso_clock_gettime' [-Wmissing-prototypes] 254 | __vdso_clock_gettime(clockid_t clock, struct __kernel_old_timespec *ts) | ^~~~~~~~~~~~~~~~~~~~ /kisskb/src/arch/sparc/vdso/vclock_gettime.c:282:1: warning: no previous prototype for '__vdso_clock_gettime_stick' [-Wmissing-prototypes] 282 | __vdso_clock_gettime_stick(clockid_t clock, struct __kernel_old_timespec *ts) | ^~~~~~~~~~~~~~~~~~~~~~~~~~ /kisskb/src/arch/sparc/vdso/vclock_gettime.c:307:1: warning: no previous prototype for '__vdso_gettimeofday' [-Wmissing-prototypes] 307 | __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/arch/sparc/vdso/vclock_gettime.c:343:1: warning: no previous prototype for '__vdso_gettimeofday_stick' [-Wmissing-prototypes] 343 | __vdso_gettimeofday_stick(struct __kernel_old_timeval *tv, struct timezone *tz) | ^~~~~~~~~~~~~~~~~~~~~~~~~ /opt/cross/kisskb/korg/gcc-13.1.0-nolibc/sparc64-linux/bin/sparc64-linux-ld: warning: arch/sparc/vdso/vdso-note.o: missing .note.GNU-stack section implies executable stack /opt/cross/kisskb/korg/gcc-13.1.0-nolibc/sparc64-linux/bin/sparc64-linux-ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker In file included from /kisskb/src/arch/sparc/vdso/vdso32/vclock_gettime.c:22: /kisskb/src/arch/sparc/vdso/vdso32/../vclock_gettime.c:254:1: warning: no previous prototype for '__vdso_clock_gettime' [-Wmissing-prototypes] 254 | __vdso_clock_gettime(clockid_t clock, struct __kernel_old_timespec *ts) | ^~~~~~~~~~~~~~~~~~~~ /kisskb/src/arch/sparc/vdso/vdso32/../vclock_gettime.c:282:1: warning: no previous prototype for '__vdso_clock_gettime_stick' [-Wmissing-prototypes] 282 | __vdso_clock_gettime_stick(clockid_t clock, struct __kernel_old_timespec *ts) | ^~~~~~~~~~~~~~~~~~~~~~~~~~ /kisskb/src/arch/sparc/vdso/vdso32/../vclock_gettime.c:307:1: warning: no previous prototype for '__vdso_gettimeofday' [-Wmissing-prototypes] 307 | __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/arch/sparc/vdso/vdso32/../vclock_gettime.c:343:1: warning: no previous prototype for '__vdso_gettimeofday_stick' [-Wmissing-prototypes] 343 | __vdso_gettimeofday_stick(struct __kernel_old_timeval *tv, struct timezone *tz) | ^~~~~~~~~~~~~~~~~~~~~~~~~ /opt/cross/kisskb/korg/gcc-13.1.0-nolibc/sparc64-linux/bin/sparc64-linux-ld: warning: arch/sparc/vdso/vdso32/vdso-note.o: missing .note.GNU-stack section implies executable stack /opt/cross/kisskb/korg/gcc-13.1.0-nolibc/sparc64-linux/bin/sparc64-linux-ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker /kisskb/src/kernel/fork.c: In function '__do_sys_clone3': /kisskb/src/kernel/fork.c:3071:2: warning: #warning clone3() entry point is missing, please fix [-Wcpp] 3071 | #warning clone3() entry point is missing, please fix | ^~~~~~~ Completed OK # rm -rf /kisskb/build/linus_allnoconfig_sparc64-gcc13 # Build took: 0:06:23.637816