Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Nov 2025 20:01:56 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 291273] p9fs module missing symbol exports -- dependent modules fail to load with module loader local symbol resolution disabled
Message-ID:  <bug-291273-227-JFWx0MR4lL@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-291273-227@https.bugs.freebsd.org/bugzilla/>

index | next in thread | previous in thread | raw e-mail

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=291273

--- Comment #1 from Ed Maste <emaste@freebsd.org> ---
We can find the symbols needed by virtio_p9fs.ko with something like

% nm obj/virtio_p9fs.ko | sed -n 's/^.* U U//p' | sort > undef.syms
% nm /boot/kernel/kernel | sed -n 's/^.* T //p' | sort > kernel.syms
% comm -23 undef.syms kernel.syms

The p9 symbols this reveals are:

p9_debug_level
p9_destroy_zones
p9_init_zones
p9_register_trans

-- 
You are receiving this mail because:
You are the assignee for the bug.

help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-291273-227-JFWx0MR4lL>