# git gc Expanding reachable commits in commit graph: 78282 Expanding reachable commits in commit graph: 174262 Expanding reachable commits in commit graph: 269720 Expanding reachable commits in commit graph: 370786 Expanding reachable commits in commit graph: 474530 Expanding reachable commits in commit graph: 569177 Expanding reachable commits in commit graph: 678642 Expanding reachable commits in commit graph: 790512 Expanding reachable commits in commit graph: 904050 Expanding reachable commits in commit graph: 1021294 Expanding reachable commits in commit graph: 1117187 Expanding reachable commits in commit graph: 1242127 Expanding reachable commits in commit graph: 1249489, done. Writing out commit graph in 4 passes: 60% (3012895/4997956) Writing out commit graph in 4 passes: 61% (3048754/4997956) Writing out commit graph in 4 passes: 62% (3098733/4997956) Writing out commit graph in 4 passes: 63% (3148713/4997956) Writing out commit graph in 4 passes: 64% (3198692/4997956) Writing out commit graph in 4 passes: 65% (3248672/4997956) Writing out commit graph in 4 passes: 66% (3298651/4997956) Writing out commit graph in 4 passes: 67% (3348631/4997956) Writing out commit graph in 4 passes: 68% (3398611/4997956) Writing out commit graph in 4 passes: 69% (3448590/4997956) Writing out commit graph in 4 passes: 70% (3498570/4997956) Writing out commit graph in 4 passes: 71% (3548549/4997956) Writing out commit graph in 4 passes: 72% (3598529/4997956) Writing out commit graph in 4 passes: 72% (3634243/4997956) Writing out commit graph in 4 passes: 73% (3648508/4997956) Writing out commit graph in 4 passes: 74% (3698488/4997956) Writing out commit graph in 4 passes: 75% (3748467/4997956) Writing out commit graph in 4 passes: 76% (3798447/4997956) Writing out commit graph in 4 passes: 77% (3848427/4997956) Writing out commit graph in 4 passes: 78% (3898406/4997956) Writing out commit graph in 4 passes: 79% (3948386/4997956) Writing out commit graph in 4 passes: 80% (3998365/4997956) Writing out commit graph in 4 passes: 81% (4048345/4997956) Writing out commit graph in 4 passes: 82% (4098324/4997956) Writing out commit graph in 4 passes: 83% (4148304/4997956) Writing out commit graph in 4 passes: 84% (4198284/4997956) Writing out commit graph in 4 passes: 85% (4248263/4997956) Writing out commit graph in 4 passes: 86% (4298243/4997956) Writing out commit graph in 4 passes: 87% (4348222/4997956) Writing out commit graph in 4 passes: 88% (4398202/4997956) Writing out commit graph in 4 passes: 89% (4448181/4997956) Writing out commit graph in 4 passes: 90% (4498161/4997956) Writing out commit graph in 4 passes: 91% (4548140/4997956) Writing out commit graph in 4 passes: 92% (4598120/4997956) Writing out commit graph in 4 passes: 93% (4648100/4997956) Writing out commit graph in 4 passes: 94% (4698079/4997956) Writing out commit graph in 4 passes: 95% (4748059/4997956) Writing out commit graph in 4 passes: 96% (4798038/4997956) Writing out commit graph in 4 passes: 97% (4848018/4997956) Writing out commit graph in 4 passes: 98% (4897997/4997956) Writing out commit graph in 4 passes: 99% (4947977/4997956) Writing out commit graph in 4 passes: 100% (4997956/4997956) Writing out commit graph in 4 passes: 100% (4997956/4997956), done. # git rev-parse -q --verify 56897d51886fa7e9f034ff26128eb09f1b811594^{commit} 56897d51886fa7e9f034ff26128eb09f1b811594 already have revision, skipping fetch # git checkout -q -f -B kisskb 56897d51886fa7e9f034ff26128eb09f1b811594 # git clean -qxdf # < git log -1 # commit 56897d51886fa7e9f034ff26128eb09f1b811594 # Merge: 6b89b6af459f ca185770db91 # Author: Linus Torvalds # Date: Fri Feb 2 15:32:58 2024 -0800 # # Merge tag 'trace-v6.8-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace # # Pull tracing and eventfs fixes from Steven Rostedt: # # - Fix the return code for ring_buffer_poll_wait() # # It was returing a -EINVAL instead of EPOLLERR. # # - Zero out the tracefs_inode so that all fields are initialized. # # The ti->private could have had stale data, but instead of just # initializing it to NULL, clear out the entire structure when it is # allocated. # # - Fix a crash in timerlat # # The hrtimer was initialized at read and not open, but is canceled at # close. If the file was opened and never read the close will pass a # NULL pointer to hrtime_cancel(). # # - Rewrite of eventfs. # # Linus wrote a patch series to remove the dentry references in the # eventfs_inode and to use ref counting and more of proper VFS # interfaces to make it work. # # - Add warning to put_ei() if ei is not set to free. That means # something is about to free it when it shouldn't. # # - Restructure the eventfs_inode to make it more compact, and remove the # unused llist field. # # - Remove the fsnotify*() funtions for when the inodes were being # created in the lookup code. It doesn't make sense to notify about # creation just because something is being looked up. # # - The inode hard link count was not accurate. # # It was being updated when a file was looked up. The inodes of # directories were updating their parent inode hard link count every # time the inode was created. That means if memory reclaim cleaned a # stale directory inode and the inode was lookup up again, it would # increment the parent inode again as well. Al Viro said to just have # all eventfs directories have a hard link count of 1. That tells user # space not to trust it. # # * tag 'trace-v6.8-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace: # eventfs: Keep all directory links at 1 # eventfs: Remove fsnotify*() functions from lookup() # eventfs: Restructure eventfs_inode structure to be more condensed # eventfs: Warn if an eventfs_inode is freed without is_freed being set # tracing/timerlat: Move hrtimer_init to timerlat_fd open() # eventfs: Get rid of dentry pointers without refcounts # eventfs: Clean up dentry ops and add revalidate function # eventfs: Remove unused d_parent pointer field # tracefs: dentry lookup crapectomy # tracefs: Avoid using the ei->dentry pointer unnecessarily # eventfs: Initialize the tracefs inode properly # tracefs: Zero out the tracefs_inode when allocating it # ring-buffer: Clean ring_buffer_poll_wait() error return # < /opt/cross/kisskb/korg/gcc-12.2.0-nolibc/m68k-linux/bin/m68k-linux-gcc --version # < /opt/cross/kisskb/korg/gcc-12.2.0-nolibc/m68k-linux/bin/m68k-linux-ld --version # < git log --format=%s --max-count=1 56897d51886fa7e9f034ff26128eb09f1b811594 # make -s -j 32 ARCH=m68k O=/kisskb/build/linus_defconfig_m68k-gcc12 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-12.2.0-nolibc/m68k-linux/bin/m68k-linux- defconfig # < make -s -j 32 ARCH=m68k O=/kisskb/build/linus_defconfig_m68k-gcc12 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-12.2.0-nolibc/m68k-linux/bin/m68k-linux- help # make -s -j 32 ARCH=m68k O=/kisskb/build/linus_defconfig_m68k-gcc12 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-12.2.0-nolibc/m68k-linux/bin/m68k-linux- olddefconfig # make -s -j 32 ARCH=m68k O=/kisskb/build/linus_defconfig_m68k-gcc12 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-12.2.0-nolibc/m68k-linux/bin/m68k-linux- Completed OK # rm -rf /kisskb/build/linus_defconfig_m68k-gcc12 # Build took: 0:05:19.972782