-
Notifications
You must be signed in to change notification settings - Fork 253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lxcfs-4.0.4: Startup fails with "undefined symbol: lxcfs_clone" #420
Comments
This is a bit odd, we'd have expected all our tests and users to fail on that too. |
Hi. I have the same issue on redhat 7.8.
|
Closes: lxc#420. Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
I see the issue. Let me send a fix
We use RTLD_LAZY which means that the symbol will only be tried to resolve on first use. What we should do is to use RTLD_NOW in the test-suite. |
Closes: #420. Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
Thanks for the fix. Resolved the issue for me. |
@stgraber As this "breaks" functionality, could you release a new upstream version with the fix? |
Since
lxcfs-4.0.4
the startup fails with the following error on Fedora when using the RPM package build through COPR: ganto/lxc4:When checking the source code it seems that between
lxcfs-4.0.3
andlxcfs-4.0.4
the implementation oflxcfs_clone()
was replaced withlxcfs_raw_clone()
in 0c525b4. However,cgroup_fuse.c
still referenceslxcfs_clone()
twice.The text was updated successfully, but these errors were encountered: