# git gc Expanding reachable commits in commit graph: 54784 Expanding reachable commits in commit graph: 112388 Expanding reachable commits in commit graph: 170640 Expanding reachable commits in commit graph: 230368 Expanding reachable commits in commit graph: 289689 Expanding reachable commits in commit graph: 350916 Expanding reachable commits in commit graph: 412600 Expanding reachable commits in commit graph: 474564 Expanding reachable commits in commit graph: 533553 Expanding reachable commits in commit graph: 596258 Expanding reachable commits in commit graph: 658748 Expanding reachable commits in commit graph: 720455 Expanding reachable commits in commit graph: 781350 Expanding reachable commits in commit graph: 842222 Expanding reachable commits in commit graph: 902889 Expanding reachable commits in commit graph: 964161 Expanding reachable commits in commit graph: 1025842 Expanding reachable commits in commit graph: 1081472 Expanding reachable commits in commit graph: 1144758 Expanding reachable commits in commit graph: 1210206 Expanding reachable commits in commit graph: 1279462 Expanding reachable commits in commit graph: 1280087, done. Writing out commit graph in 4 passes: 55% (2845307/5120348) Writing out commit graph in 4 passes: 56% (2867395/5120348) Writing out commit graph in 4 passes: 57% (2918599/5120348) Writing out commit graph in 4 passes: 58% (2969802/5120348) Writing out commit graph in 4 passes: 59% (3021006/5120348) Writing out commit graph in 4 passes: 60% (3072209/5120348) Writing out commit graph in 4 passes: 61% (3123413/5120348) Writing out commit graph in 4 passes: 62% (3174616/5120348) Writing out commit graph in 4 passes: 63% (3225820/5120348) Writing out commit graph in 4 passes: 64% (3277023/5120348) Writing out commit graph in 4 passes: 64% (3299976/5120348) Writing out commit graph in 4 passes: 65% (3328227/5120348) Writing out commit graph in 4 passes: 66% (3379430/5120348) Writing out commit graph in 4 passes: 67% (3430634/5120348) Writing out commit graph in 4 passes: 68% (3481837/5120348) Writing out commit graph in 4 passes: 69% (3533041/5120348) Writing out commit graph in 4 passes: 70% (3584244/5120348) Writing out commit graph in 4 passes: 71% (3635448/5120348) Writing out commit graph in 4 passes: 72% (3686651/5120348) Writing out commit graph in 4 passes: 73% (3737855/5120348) Writing out commit graph in 4 passes: 73% (3759235/5120348) Writing out commit graph in 4 passes: 74% (3789058/5120348) Writing out commit graph in 4 passes: 75% (3840261/5120348) Writing out commit graph in 4 passes: 76% (3891465/5120348) Writing out commit graph in 4 passes: 77% (3942668/5120348) Writing out commit graph in 4 passes: 78% (3993872/5120348) Writing out commit graph in 4 passes: 79% (4045075/5120348) Writing out commit graph in 4 passes: 80% (4096279/5120348) Writing out commit graph in 4 passes: 81% (4147482/5120348) Writing out commit graph in 4 passes: 82% (4198686/5120348) Writing out commit graph in 4 passes: 83% (4249889/5120348) Writing out commit graph in 4 passes: 84% (4301093/5120348) Writing out commit graph in 4 passes: 85% (4352296/5120348) Writing out commit graph in 4 passes: 86% (4403500/5120348) Writing out commit graph in 4 passes: 87% (4454703/5120348) Writing out commit graph in 4 passes: 88% (4505907/5120348) Writing out commit graph in 4 passes: 89% (4557110/5120348) Writing out commit graph in 4 passes: 90% (4608314/5120348) Writing out commit graph in 4 passes: 91% (4659517/5120348) Writing out commit graph in 4 passes: 92% (4710721/5120348) Writing out commit graph in 4 passes: 93% (4761924/5120348) Writing out commit graph in 4 passes: 94% (4813128/5120348) Writing out commit graph in 4 passes: 95% (4864331/5120348) Writing out commit graph in 4 passes: 96% (4915535/5120348) Writing out commit graph in 4 passes: 97% (4966738/5120348) Writing out commit graph in 4 passes: 98% (5017942/5120348) Writing out commit graph in 4 passes: 99% (5069145/5120348) Writing out commit graph in 4 passes: 100% (5120348/5120348) Writing out commit graph in 4 passes: 100% (5120348/5120348), done. # git rev-parse -q --verify 2ef5971ff345d3c000873725db555085e0131961^{commit} # git fetch -q -n -f git://fs.ozlabs.ibm.com/kernel/linus master # git rev-parse -q --verify 2ef5971ff345d3c000873725db555085e0131961^{commit} 2ef5971ff345d3c000873725db555085e0131961 # git checkout -q -f -B kisskb 2ef5971ff345d3c000873725db555085e0131961 # git clean -qxdf # < git log -1 # commit 2ef5971ff345d3c000873725db555085e0131961 # Merge: 83a7eefedc9b f5ceb1bbc98c # Author: Linus Torvalds # Date: Tue Jun 11 12:04:21 2024 -0700 # # Merge tag 'vfs-6.10-rc4.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs # # Pull vfs fixes from Christian Brauner: # "Misc: # - Restore debugfs behavior of ignoring unknown mount options # - Fix kernel doc for netfs_wait_for_oustanding_io() # - Fix struct statx comment after new addition for this cycle # - Fix a check in find_next_fd() # # iomap: # - Fix data zeroing behavior when an extent spans the block that # contains i_size # - Restore i_size increasing in iomap_write_end() for now to avoid # stale data exposure on xfs with a realtime device # # Cachefiles: # - Remove unneeded fdtable.h include # - Improve trace output for cachefiles_obj_{get,put}_ondemand_fd() # - Remove requests from the request list to prevent accessing already # freed requests # - Fix UAF when issuing restore command while the daemon is still # alive by adding an additional reference count to requests # - Fix UAF by grabbing a reference during xarray lookup with xa_lock() # held # - Simplify error handling in cachefiles_ondemand_daemon_read() # - Add consistency checks read and open requests to avoid crashes # - Add a spinlock to protect ondemand_id variable which is used to # determine whether an anonymous cachefiles fd has already been # closed # - Make on-demand reads killable allowing to handle broken cachefiles # daemon better # - Flush all requests after the kernel has been marked dead via # CACHEFILES_DEAD to avoid hung-tasks # - Ensure that closed requests are marked as such to avoid reusing # them with a reopen request # - Defer fd_install() until after copy_to_user() succeeded and thereby # get rid of having to use close_fd() # - Ensure that anonymous cachefiles on-demand fds are reused while # they are valid to avoid pinning already freed cookies" # # * tag 'vfs-6.10-rc4.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs: # iomap: Fix iomap_adjust_read_range for plen calculation # iomap: keep on increasing i_size in iomap_write_end() # cachefiles: remove unneeded include of # fs/file: fix the check in find_next_fd() # cachefiles: make on-demand read killable # cachefiles: flush all requests after setting CACHEFILES_DEAD # cachefiles: Set object to close if ondemand_id < 0 in copen # cachefiles: defer exposing anon_fd until after copy_to_user() succeeds # cachefiles: never get a new anonymous fd if ondemand_id is valid # cachefiles: add spin_lock for cachefiles_ondemand_info # cachefiles: add consistency check for copen/cread # cachefiles: remove err_put_fd label in cachefiles_ondemand_daemon_read() # cachefiles: fix slab-use-after-free in cachefiles_ondemand_daemon_read() # cachefiles: fix slab-use-after-free in cachefiles_ondemand_get_fd() # cachefiles: remove requests from xarray during flushing requests # cachefiles: add output string to cachefiles_obj_[get|put]_ondemand_fd # statx: Update offset commentary for struct statx # netfs: fix kernel doc for nets_wait_for_outstanding_io() # debugfs: continue to ignore unknown mount options # < /opt/cross/kisskb/korg/gcc-5.5.0-nolibc/sparc64-linux/bin/sparc64-linux-gcc --version # < /opt/cross/kisskb/korg/gcc-5.5.0-nolibc/sparc64-linux/bin/sparc64-linux-ld --version # < git log --format=%s --max-count=1 2ef5971ff345d3c000873725db555085e0131961 # make -s -j 160 ARCH=sparc O=/kisskb/build/linus_sparc32_defconfig_sparc64-gcc5 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-5.5.0-nolibc/sparc64-linux/bin/sparc64-linux- sparc32_defconfig # < make -s -j 160 ARCH=sparc O=/kisskb/build/linus_sparc32_defconfig_sparc64-gcc5 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-5.5.0-nolibc/sparc64-linux/bin/sparc64-linux- help # make -s -j 160 ARCH=sparc O=/kisskb/build/linus_sparc32_defconfig_sparc64-gcc5 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-5.5.0-nolibc/sparc64-linux/bin/sparc64-linux- olddefconfig # make -s -j 160 ARCH=sparc O=/kisskb/build/linus_sparc32_defconfig_sparc64-gcc5 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-5.5.0-nolibc/sparc64-linux/bin/sparc64-linux- :1519:2: warning: #warning syscall clone3 not implemented [-Wcpp] cc1: warning: unrecognized command line option '-Wno-shift-negative-value' cc1: warning: unrecognized command line option '-Wno-stringop-overflow' Completed OK # rm -rf /kisskb/build/linus_sparc32_defconfig_sparc64-gcc5 # Build took: 0:05:55.722964