1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-29 12:03:03 +00:00

Fix ctl(4) kldload failure that manifested like this:

link_elf_obj: symbol icl_pdu_new_bhs undefined

PR:		192031
Submitted by:	Nils Beyer (earlier version)
MFC after:	3 days
Sponsored by:	FreeBSD Foundation
This commit is contained in:
Edward Tomasz Napierala 2014-07-25 11:29:45 +00:00
parent 6cf8764e75
commit cb6cc00d74
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=269088

View File

@ -179,6 +179,7 @@ static struct ctl_frontend cfiscsi_frontend =
.ioctl = cfiscsi_ioctl,
};
CTL_FRONTEND_DECLARE(ctlcfiscsi, cfiscsi_frontend);
MODULE_DEPEND(ctlcfiscsi, icl, 1, 1, 1);
static struct icl_pdu *
cfiscsi_pdu_new_response(struct icl_pdu *request, int flags)