-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
FreeBSD kernel module should depend on xdr instead of krpc on CURRENT #10442
Labels
Type: Building
Indicates an issue related to building binaries
Comments
behlendorf
added
the
Type: Building
Indicates an issue related to building binaries
label
Jun 11, 2020
ghost
self-assigned this
Jun 12, 2020
ghost
pushed a commit
to zfsonfreebsd/ZoF
that referenced
this issue
Jun 12, 2020
Closes openzfs#10442 Since https://reviews.freebsd.org/D24408 FreeBSD provides XDR functions in the xdr module instead of krpc. For FreeBSD 13, the MODULE_DEPEND should be changed to xdr Signed-off-by: Ryan Moeller <ryan@iXsystems.com>
ghost
mentioned this issue
Jun 12, 2020
12 tasks
behlendorf
pushed a commit
that referenced
this issue
Jun 16, 2020
Since https://reviews.freebsd.org/D24408 FreeBSD provides XDR functions in the xdr module instead of krpc. For FreeBSD 13, the MODULE_DEPEND should be changed to xdr Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ryan Moeller <ryan@iXsystems.com> Closes #10442 Closes #10443
lundman
referenced
this issue
in openzfsonosx/openzfs
Jun 19, 2020
Since https://reviews.freebsd.org/D24408 FreeBSD provides XDR functions in the xdr module instead of krpc. For FreeBSD 13, the MODULE_DEPEND should be changed to xdr Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ryan Moeller <ryan@iXsystems.com> Closes #10442 Closes #10443
jsai20
pushed a commit
to jsai20/zfs
that referenced
this issue
Mar 30, 2021
Since https://reviews.freebsd.org/D24408 FreeBSD provides XDR functions in the xdr module instead of krpc. For FreeBSD 13, the MODULE_DEPEND should be changed to xdr Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ryan Moeller <ryan@iXsystems.com> Closes openzfs#10442 Closes openzfs#10443
sempervictus
pushed a commit
to sempervictus/zfs
that referenced
this issue
May 31, 2021
Since https://reviews.freebsd.org/D24408 FreeBSD provides XDR functions in the xdr module instead of krpc. For FreeBSD 13, the MODULE_DEPEND should be changed to xdr Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ryan Moeller <ryan@iXsystems.com> Closes openzfs#10442 Closes openzfs#10443
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since https://reviews.freebsd.org/D24408 FreeBSD provides XDR functions in the
xdr
module instead ofkrpc
.With a modular (
MINIMAL
style) kernel configuration, OpenZFS (openzfs-kmod
package) currently does not load on fresh -CURRENT: complains about thexdrmem_create
symbol not being found.For FreeBSD 13, the
MODULE_DEPEND
should be changed toxdr
.The text was updated successfully, but these errors were encountered: