Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Jul 2014 11:29:45 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r269088 - head/sys/cam/ctl
Message-ID:  <201407251129.s6PBTjOU087564@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: trasz
Date: Fri Jul 25 11:29:45 2014
New Revision: 269088
URL: http://svnweb.freebsd.org/changeset/base/269088

Log:
  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

Modified:
  head/sys/cam/ctl/ctl_frontend_iscsi.c

Modified: head/sys/cam/ctl/ctl_frontend_iscsi.c
==============================================================================
--- head/sys/cam/ctl/ctl_frontend_iscsi.c	Fri Jul 25 10:27:36 2014	(r269087)
+++ head/sys/cam/ctl/ctl_frontend_iscsi.c	Fri Jul 25 11:29:45 2014	(r269088)
@@ -179,6 +179,7 @@ static struct ctl_frontend cfiscsi_front
 	.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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407251129.s6PBTjOU087564>