# git rev-parse -q --verify bba7d682277c09373b56b0461b0abbd0b3d1e872^{commit} bba7d682277c09373b56b0461b0abbd0b3d1e872 already have revision, skipping fetch # git checkout -q -f -B kisskb bba7d682277c09373b56b0461b0abbd0b3d1e872 # git clean -qxdf # < git log -1 # commit bba7d682277c09373b56b0461b0abbd0b3d1e872 # Merge: a64a325bf631 2a09b575074f # Author: Linus Torvalds # Date: Tue Nov 2 12:42:56 2021 -0700 # # Merge tag 'xfs-5.16-merge-4' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux # # Pull xfs updates from Darrick Wong: # "This cycle we've worked on fixing bugs and improving XFS' memory # footprint. # # The most notable fixes include: fixing a corruption warning (and free # space accounting skew) if copy on write fails; fixing slab cache # misuse if SLOB is enabled, which apparently was broken for years # without anybody noticing; and fixing a potential race with online # shrinkfs. # # Otherwise, the bulk of the changes here involve setting up separate # slab caches for frequently used items such as btree cursors and log # intent items, and compacting the structures to reduce memory usage of # those items substantially. This also sets us up to support larger # btrees in future kernels. We also switch parts of online fsck to # allocate scrub context information from the heap instead of using # stack space. # # Summary: # # - Bug fixes and cleanups for kernel memory allocation usage, this # time without touching the mm code. # # - Refactor the log recovery mechanism that preserves held resources # across a transaction roll so that it uses the exact same mechanism # that we use for that during regular runtime. # # - Fix bugs and tighten checking around btree heights. # # - Remove more old typedefs. # # - Fix perag reference leaks when racing with growfs. # # - Remove unused fields from xfs_btree_cur. # # - Allocate various scrub structures on the heap to reduce stack # usage. # # - Pack xfs_btree_cur fields and rearrange to support arbitrary # heights. # # - Compute maximum possible heights for each btree height, and use # that to set up slab caches for each btree type. # # - Finally remove kmem_zone_t, since these have always been struct # kmem_cache on Linux. # # - Compact the structures used to coordinate work intent items. # # - Set up slab caches for each work intent item type. # # - Rename the "bmap_add_free" function to "free_extent_later", which # more accurately describes what it does. # # - Fix corruption warning on unmount when a CoW preallocation covers a # data fork delalloc reservation but then the CoW fails. # # - Add some more minor code improvements" # # * tag 'xfs-5.16-merge-4' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux: (45 commits) # xfs: use swap() to make code cleaner # xfs: Remove duplicated include in xfs_super # xfs: punch out data fork delalloc blocks on COW writeback failure # xfs: remove unused parameter from refcount code # xfs: reduce the size of struct xfs_extent_free_item # xfs: rename xfs_bmap_add_free to xfs_free_extent_later # xfs: create slab caches for frequently-used deferred items # xfs: compact deferred intent item structures # xfs: rename _zone variables to _cache # xfs: remove kmem_zone typedef # xfs: use separate btree cursor cache for each btree type # xfs: compute absolute maximum nlevels for each btree type # xfs: kill XFS_BTREE_MAXLEVELS # xfs: compute the maximum height of the rmap btree when reflink enabled # xfs: clean up xfs_btree_{calc_size,compute_maxlevels} # xfs: compute maximum AG btree height for critical reservation calculation # xfs: rename m_ag_maxlevels to m_allocbt_maxlevels # xfs: dynamically allocate cursors based on maxlevels # xfs: encode the max btree height in the cursor # xfs: refactor btree cursor allocation function # ... # < /opt/cross/kisskb/korg/gcc-11.1.0-nolibc/m68k-linux/bin/m68k-linux-gcc --version # < /opt/cross/kisskb/korg/gcc-11.1.0-nolibc/m68k-linux/bin/m68k-linux-ld --version # < git log --format=%s --max-count=1 bba7d682277c09373b56b0461b0abbd0b3d1e872 # < make -s -j 24 ARCH=m68k O=/kisskb/build/linus_m68k-allmodconfig_m68k-gcc11 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-11.1.0-nolibc/m68k-linux/bin/m68k-linux- allmodconfig # Added to kconfig CONFIG_BUILD_DOCSRC=n # Added to kconfig CONFIG_MODULE_SIG=n # Added to kconfig CONFIG_SAMPLES=n # < make -s -j 24 ARCH=m68k O=/kisskb/build/linus_m68k-allmodconfig_m68k-gcc11 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-11.1.0-nolibc/m68k-linux/bin/m68k-linux- help # make -s -j 24 ARCH=m68k O=/kisskb/build/linus_m68k-allmodconfig_m68k-gcc11 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-11.1.0-nolibc/m68k-linux/bin/m68k-linux- olddefconfig # make -s -j 24 ARCH=m68k O=/kisskb/build/linus_m68k-allmodconfig_m68k-gcc11 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-11.1.0-nolibc/m68k-linux/bin/m68k-linux- :1559:2: warning: #warning syscall futex_waitv not implemented [-Wcpp] In file included from : In function 'prestera_hw_build_tests', inlined from 'prestera_hw_switch_init' at /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:788:2: /kisskb/src/include/linux/compiler_types.h:317:45: error: call to '__compiletime_assert_351' declared with attribute error: BUILD_BUG_ON failed: sizeof(struct prestera_msg_switch_attr_req) != 16 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^ /kisskb/src/include/linux/compiler_types.h:298:25: note: in definition of macro '__compiletime_assert' 298 | prefix ## suffix(); \ | ^~~~~~ /kisskb/src/include/linux/compiler_types.h:317:9: note: in expansion of macro '_compiletime_assert' 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert' 39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) | ^~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:50:9: note: in expansion of macro 'BUILD_BUG_ON_MSG' 50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition) | ^~~~~~~~~~~~~~~~ /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:501:9: note: in expansion of macro 'BUILD_BUG_ON' 501 | BUILD_BUG_ON(sizeof(struct prestera_msg_switch_attr_req) != 16); | ^~~~~~~~~~~~ /kisskb/src/include/linux/compiler_types.h:317:45: error: call to '__compiletime_assert_356' declared with attribute error: BUILD_BUG_ON failed: sizeof(struct prestera_msg_bridge_req) != 16 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^ /kisskb/src/include/linux/compiler_types.h:298:25: note: in definition of macro '__compiletime_assert' 298 | prefix ## suffix(); \ | ^~~~~~ /kisskb/src/include/linux/compiler_types.h:317:9: note: in expansion of macro '_compiletime_assert' 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert' 39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) | ^~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:50:9: note: in expansion of macro 'BUILD_BUG_ON_MSG' 50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition) | ^~~~~~~~~~~~~~~~ /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:506:9: note: in expansion of macro 'BUILD_BUG_ON' 506 | BUILD_BUG_ON(sizeof(struct prestera_msg_bridge_req) != 16); | ^~~~~~~~~~~~ /kisskb/src/include/linux/compiler_types.h:317:45: error: call to '__compiletime_assert_358' declared with attribute error: BUILD_BUG_ON failed: sizeof(struct prestera_msg_acl_ruleset_bind_req) != 16 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^ /kisskb/src/include/linux/compiler_types.h:298:25: note: in definition of macro '__compiletime_assert' 298 | prefix ## suffix(); \ | ^~~~~~ /kisskb/src/include/linux/compiler_types.h:317:9: note: in expansion of macro '_compiletime_assert' 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert' 39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) | ^~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:50:9: note: in expansion of macro 'BUILD_BUG_ON_MSG' 50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition) | ^~~~~~~~~~~~~~~~ /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:508:9: note: in expansion of macro 'BUILD_BUG_ON' 508 | BUILD_BUG_ON(sizeof(struct prestera_msg_acl_ruleset_bind_req) != 16); | ^~~~~~~~~~~~ /kisskb/src/include/linux/compiler_types.h:317:45: error: call to '__compiletime_assert_359' declared with attribute error: BUILD_BUG_ON failed: sizeof(struct prestera_msg_acl_ruleset_req) != 8 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^ /kisskb/src/include/linux/compiler_types.h:298:25: note: in definition of macro '__compiletime_assert' 298 | prefix ## suffix(); \ | ^~~~~~ /kisskb/src/include/linux/compiler_types.h:317:9: note: in expansion of macro '_compiletime_assert' 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert' 39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) | ^~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:50:9: note: in expansion of macro 'BUILD_BUG_ON_MSG' 50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition) | ^~~~~~~~~~~~~~~~ /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:509:9: note: in expansion of macro 'BUILD_BUG_ON' 509 | BUILD_BUG_ON(sizeof(struct prestera_msg_acl_ruleset_req) != 8); | ^~~~~~~~~~~~ /kisskb/src/include/linux/compiler_types.h:317:45: error: call to '__compiletime_assert_360' declared with attribute error: BUILD_BUG_ON failed: sizeof(struct prestera_msg_span_req) != 16 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^ /kisskb/src/include/linux/compiler_types.h:298:25: note: in definition of macro '__compiletime_assert' 298 | prefix ## suffix(); \ | ^~~~~~ /kisskb/src/include/linux/compiler_types.h:317:9: note: in expansion of macro '_compiletime_assert' 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert' 39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) | ^~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:50:9: note: in expansion of macro 'BUILD_BUG_ON_MSG' 50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition) | ^~~~~~~~~~~~~~~~ /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:510:9: note: in expansion of macro 'BUILD_BUG_ON' 510 | BUILD_BUG_ON(sizeof(struct prestera_msg_span_req) != 16); | ^~~~~~~~~~~~ /kisskb/src/include/linux/compiler_types.h:317:45: error: call to '__compiletime_assert_362' declared with attribute error: BUILD_BUG_ON failed: sizeof(struct prestera_msg_rxtx_req) != 8 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^ /kisskb/src/include/linux/compiler_types.h:298:25: note: in definition of macro '__compiletime_assert' 298 | prefix ## suffix(); \ | ^~~~~~ /kisskb/src/include/linux/compiler_types.h:317:9: note: in expansion of macro '_compiletime_assert' 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert' 39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) | ^~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:50:9: note: in expansion of macro 'BUILD_BUG_ON_MSG' 50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition) | ^~~~~~~~~~~~~~~~ /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:512:9: note: in expansion of macro 'BUILD_BUG_ON' 512 | BUILD_BUG_ON(sizeof(struct prestera_msg_rxtx_req) != 8); | ^~~~~~~~~~~~ /kisskb/src/include/linux/compiler_types.h:317:45: error: call to '__compiletime_assert_363' declared with attribute error: BUILD_BUG_ON failed: sizeof(struct prestera_msg_lag_req) != 16 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^ /kisskb/src/include/linux/compiler_types.h:298:25: note: in definition of macro '__compiletime_assert' 298 | prefix ## suffix(); \ | ^~~~~~ /kisskb/src/include/linux/compiler_types.h:317:9: note: in expansion of macro '_compiletime_assert' 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert' 39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) | ^~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:50:9: note: in expansion of macro 'BUILD_BUG_ON_MSG' 50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition) | ^~~~~~~~~~~~~~~~ /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:513:9: note: in expansion of macro 'BUILD_BUG_ON' 513 | BUILD_BUG_ON(sizeof(struct prestera_msg_lag_req) != 16); | ^~~~~~~~~~~~ /kisskb/src/include/linux/compiler_types.h:317:45: error: call to '__compiletime_assert_364' declared with attribute error: BUILD_BUG_ON failed: sizeof(struct prestera_msg_cpu_code_counter_req) != 8 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^ /kisskb/src/include/linux/compiler_types.h:298:25: note: in definition of macro '__compiletime_assert' 298 | prefix ## suffix(); \ | ^~~~~~ /kisskb/src/include/linux/compiler_types.h:317:9: note: in expansion of macro '_compiletime_assert' 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert' 39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) | ^~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:50:9: note: in expansion of macro 'BUILD_BUG_ON_MSG' 50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition) | ^~~~~~~~~~~~~~~~ /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:514:9: note: in expansion of macro 'BUILD_BUG_ON' 514 | BUILD_BUG_ON(sizeof(struct prestera_msg_cpu_code_counter_req) != 8); | ^~~~~~~~~~~~ /kisskb/src/include/linux/compiler_types.h:317:45: error: call to '__compiletime_assert_369' declared with attribute error: BUILD_BUG_ON failed: sizeof(struct prestera_msg_port_info_resp) != 20 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^ /kisskb/src/include/linux/compiler_types.h:298:25: note: in definition of macro '__compiletime_assert' 298 | prefix ## suffix(); \ | ^~~~~~ /kisskb/src/include/linux/compiler_types.h:317:9: note: in expansion of macro '_compiletime_assert' 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert' 39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) | ^~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:50:9: note: in expansion of macro 'BUILD_BUG_ON_MSG' 50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition) | ^~~~~~~~~~~~~~~~ /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:521:9: note: in expansion of macro 'BUILD_BUG_ON' 521 | BUILD_BUG_ON(sizeof(struct prestera_msg_port_info_resp) != 20); | ^~~~~~~~~~~~ /kisskb/src/include/linux/compiler_types.h:317:45: error: call to '__compiletime_assert_370' declared with attribute error: BUILD_BUG_ON failed: sizeof(struct prestera_msg_bridge_resp) != 12 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^ /kisskb/src/include/linux/compiler_types.h:298:25: note: in definition of macro '__compiletime_assert' 298 | prefix ## suffix(); \ | ^~~~~~ /kisskb/src/include/linux/compiler_types.h:317:9: note: in expansion of macro '_compiletime_assert' 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert' 39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) | ^~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:50:9: note: in expansion of macro 'BUILD_BUG_ON_MSG' 50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition) | ^~~~~~~~~~~~~~~~ /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:522:9: note: in expansion of macro 'BUILD_BUG_ON' 522 | BUILD_BUG_ON(sizeof(struct prestera_msg_bridge_resp) != 12); | ^~~~~~~~~~~~ /kisskb/src/include/linux/compiler_types.h:317:45: error: call to '__compiletime_assert_373' declared with attribute error: BUILD_BUG_ON failed: sizeof(struct prestera_msg_acl_ruleset_resp) != 12 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^ /kisskb/src/include/linux/compiler_types.h:298:25: note: in definition of macro '__compiletime_assert' 298 | prefix ## suffix(); \ | ^~~~~~ /kisskb/src/include/linux/compiler_types.h:317:9: note: in expansion of macro '_compiletime_assert' 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert' 39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) | ^~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:50:9: note: in expansion of macro 'BUILD_BUG_ON_MSG' 50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition) | ^~~~~~~~~~~~~~~~ /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:525:9: note: in expansion of macro 'BUILD_BUG_ON' 525 | BUILD_BUG_ON(sizeof(struct prestera_msg_acl_ruleset_resp) != 12); | ^~~~~~~~~~~~ /kisskb/src/include/linux/compiler_types.h:317:45: error: call to '__compiletime_assert_374' declared with attribute error: BUILD_BUG_ON failed: sizeof(struct prestera_msg_span_resp) != 12 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^ /kisskb/src/include/linux/compiler_types.h:298:25: note: in definition of macro '__compiletime_assert' 298 | prefix ## suffix(); \ | ^~~~~~ /kisskb/src/include/linux/compiler_types.h:317:9: note: in expansion of macro '_compiletime_assert' 317 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__) | ^~~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:39:37: note: in expansion of macro 'compiletime_assert' 39 | #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) | ^~~~~~~~~~~~~~~~~~ /kisskb/src/include/linux/build_bug.h:50:9: note: in expansion of macro 'BUILD_BUG_ON_MSG' 50 | BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition) | ^~~~~~~~~~~~~~~~ /kisskb/src/drivers/net/ethernet/marvell/prestera/prestera_hw.c:526:9: note: in expansion of macro 'BUILD_BUG_ON' 526 | BUILD_BUG_ON(sizeof(struct prestera_msg_span_resp) != 12); | ^~~~~~~~~~~~ make[6]: *** [/kisskb/src/scripts/Makefile.build:277: drivers/net/ethernet/marvell/prestera/prestera_hw.o] Error 1 make[5]: *** [/kisskb/src/scripts/Makefile.build:540: drivers/net/ethernet/marvell/prestera] Error 2 make[4]: *** [/kisskb/src/scripts/Makefile.build:540: drivers/net/ethernet/marvell] Error 2 make[3]: *** [/kisskb/src/scripts/Makefile.build:540: drivers/net/ethernet] Error 2 make[3]: *** Waiting for unfinished jobs.... make[2]: *** [/kisskb/src/scripts/Makefile.build:540: drivers/net] Error 2 make[2]: *** Waiting for unfinished jobs.... make[1]: *** [/kisskb/src/Makefile:1872: drivers] Error 2 make: *** [Makefile:219: __sub-make] Error 2 Command 'make -s -j 24 ARCH=m68k O=/kisskb/build/linus_m68k-allmodconfig_m68k-gcc11 CROSS_COMPILE=/opt/cross/kisskb/korg/gcc-11.1.0-nolibc/m68k-linux/bin/m68k-linux- ' returned non-zero exit status 2 # rm -rf /kisskb/build/linus_m68k-allmodconfig_m68k-gcc11 # Build took: 0:15:11.162063