Seems the update on 9-03 fixed the missing symbols issue.
Search Criteria
Package Details: linux-bcachefs-git 6.13.0.rc3.1.bcachefs.git.00244.gc6847800c7a0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/linux-bcachefs-git.git (read-only, click to copy) |
---|---|
Package Base: | linux-bcachefs-git |
Description: | The Linux kernel and modules ~ featuring Kent Overstreet's bcachefs filesystem |
Upstream URL: | https://github.com/koverstreet/bcachefs |
Licenses: | GPL-2.0-only |
Provides: | KSMBD-MODULE, VIRTUALBOX-GUEST-MODULES, WIREGUARD-MODULE |
Replaces: | virtualbox-guest-modules-arch, wireguard-arch |
Submitter: | Chiruno |
Maintainer: | QuartzDragon |
Last Packager: | QuartzDragon |
Votes: | 16 |
Popularity: | 0.000110 |
First Submitted: | 2018-01-13 15:37 (UTC) |
Last Updated: | 2024-12-26 11:02 (UTC) |
Dependencies (21)
- bcachefs-tools (bcachefs-tools-gitAUR)
- coreutils (coreutils-gitAUR, busybox-coreutilsAUR, coreutils-hybrid-gitAUR, coreutils-selinuxAUR, coreutils-uutilsAUR, coreutils-hybridAUR)
- initramfs (booster-gitAUR, booster-wip-gitAUR, dracut-gitAUR, mkinitcpio-gitAUR, booster, dracut, mkinitcpio)
- kmod (busybox-coreutilsAUR, kmod-gitAUR)
- bc (bc-ghAUR) (make)
- cpio (cpio-gitAUR) (make)
- gettext (gettext-gitAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
- graphviz (make)
- imagemagick (imagemagick-gitAUR, imagemagick-full-gitAUR, imagemagick-fullAUR) (make)
- libelf (elfutils-gitAUR) (make)
- pahole (pahole-gitAUR) (make)
- perl (perl-gitAUR) (make)
- python (python37AUR, python311AUR, python310AUR) (make)
- python-sphinx (python-sphinx-gitAUR) (make)
- python-yaml (python-yaml-gitAUR) (make)
- tar (tar-gitAUR, busybox-coreutilsAUR) (make)
- texlive-latexextra (texlive-installerAUR, texlive-fullAUR, texlive-dummyAUR) (make)
- xz (xz-gitAUR) (make)
- linux-firmware (linux-libre-firmwareAUR, linux-firmware-xzAUR, linux-firmware-gitAUR, linux-firmware-uncompressedAUR) (optional) – firmware images needed for some devices
- Show 1 more dependencies...
Required by (6)
- ksmbd-tools (requires KSMBD-MODULE)
- mullvad-wg.sh-git (requires WIREGUARD-MODULE) (optional)
- piavpn-bin (requires WIREGUARD-MODULE) (optional)
- piavpn-manual-git (requires WIREGUARD-MODULE)
- virtualbox-guest-utils-nox-svn (requires VIRTUALBOX-GUEST-MODULES)
- virtualbox-guest-utils-svn (requires VIRTUALBOX-GUEST-MODULES)
Sources (3)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 .. 13 Next › Last »
demizer commented on 2023-09-05 22:03 (UTC)
demizer commented on 2023-09-02 20:33 (UTC) (edited on 2023-09-02 20:34 (UTC) by demizer)
Issue for the build failures regarding the missing symbols as reported in comments
- https://aur.archlinux.org/packages/linux-bcachefs-git#comment-931358
- https://aur.archlinux.org/packages/linux-bcachefs-git#comment-929632
reported upstream here: https://github.com/koverstreet/bcachefs/issues/590
QuartzDragon commented on 2023-08-29 23:48 (UTC)
@ticpu
Please report upstream if you haven't already.
Shouldn't have to work around stuff in config... but when even that doesn't work... with a filesystem have little knowledge about the inner workings of, I find it far safer to just leave things to Kent or the others working on bcachefs to resolve, and so present fixes for.
I guess I don't want to be responsible for creating weird bugs that might eat people's data, heh.
ticpu commented on 2023-08-29 02:33 (UTC)
The latest version gives me the same issue as shintak but enabling CONFIG_LOCK_STAT didn't fix it. I had to remove the 2 tracepoints in the code to finish compiling.
diff --git a/fs/bcachefs/six.c b/fs/bcachefs/six.c
index 581aee565e95..4fce655a94e9 100644
--- a/fs/bcachefs/six.c
+++ b/fs/bcachefs/six.c
@@ -456,7 +456,6 @@ static int six_lock_slowpath(struct six_lock *lock, enum six_lock_type type,
smp_mb__after_atomic();
}
- trace_contention_begin(lock, 0);
lock_contended(&lock->dep_map, ip);
if (six_optimistic_spin(lock, type))
@@ -526,7 +525,6 @@ static int six_lock_slowpath(struct six_lock *lock, enum six_lock_type type,
six_clear_bitmask(lock, SIX_LOCK_HELD_write);
six_lock_wakeup(lock, atomic_read(&lock->state), SIX_LOCK_read);
}
- trace_contention_end(lock, 0);
return ret;
}
QuartzDragon commented on 2023-08-17 13:53 (UTC)
@shintak
Please report this upstream as soon as possible, as it will help immensely with Kent fixing these sort of bugs.
Enabling CONFIG_LOCK_STAT bloats the install size quite a bit... not sure whether to actually enable it, or just wait until Kent fixes said bug.
shintak commented on 2023-08-17 04:20 (UTC) (edited on 2023-08-17 04:30 (UTC) by shintak)
Maybe just me but current version fails building with follwing error:
MODPOST Module.symvers
ERROR: modpost: "__SCT__tp_func_contention_begin" [fs/bcachefs/bcachefs.ko] undefined!
ERROR: modpost: "__SCT__tp_func_contention_end" [fs/bcachefs/bcachefs.ko] undefined!
ERROR: modpost: "__tracepoint_contention_begin" [fs/bcachefs/bcachefs.ko] undefined!
ERROR: modpost: "__tracepoint_contention_end" [fs/bcachefs/bcachefs.ko] undefined!
ERROR: modpost: "__SCK__tp_func_contention_end" [fs/bcachefs/bcachefs.ko] undefined!
ERROR: modpost: "__SCK__tp_func_contention_begin" [fs/bcachefs/bcachefs.ko] undefined!
make[1]: *** [scripts/Makefile.modpost:136: Module.symvers] エラー 1
make: *** [Makefile:1978: modpost] エラー 2
Downloaded the package and after adding CONFIG_LOCK_STAT=y
to config
, build succeeded.
However, I think it is more of a bug on the bcachefs side.
trougnouf commented on 2023-08-05 13:58 (UTC)
Thanks for the quick update :)
trougnouf commented on 2023-08-04 10:19 (UTC)
It's currently broken with fatal: reference is not a tree: be3ef67f38e1e6a6bdbe2253b6bf4c19be05dcb9
shintak commented on 2023-07-30 18:55 (UTC)
@QuartzDragon Thanks for quick fix. Confirmed now install succeeds.
QuartzDragon commented on 2023-07-25 00:32 (UTC)
@shintak
Fixed. The repo maintainer likes to force-push fixes a lot at the moment, so the hash changes. :/
Repo seemingly won't build beyond a certain commit at the moment, so I purposefully keep it back by default.
Pinned Comments
QuartzDragon commented on 2019-06-11 15:15 (UTC) (edited on 2019-06-11 15:17 (UTC) by QuartzDragon)
If there are bugs related to the PKGBUILD or config, report here.
Otherwise, please report here:
https://github.com/koverstreet/bcachefs/issues