From owner-freebsd-net@FreeBSD.ORG Thu May 21 02:41:27 2015 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 661D3C17 for ; Thu, 21 May 2015 02:41:27 +0000 (UTC) Received: from mail-oi0-x236.google.com (mail-oi0-x236.google.com [IPv6:2607:f8b0:4003:c06::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2D5D41D0B for ; Thu, 21 May 2015 02:41:27 +0000 (UTC) Received: by oihd6 with SMTP id d6so7571602oih.2 for ; Wed, 20 May 2015 19:41:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=Nbhug0Q6FZ3ygg6CP7zm9gExeyf3ih5gvyZufmzxKvg=; b=uRfiNldFRc1nvzFLRQu0OVSqwrruFgBJTNK6LvQNLlnsKXLkAmRLPmebzsegwBKtpx OPHCQCL0PrMkxoLaUvw36jAhHkZ3tnNh8CFbfqOZ8Q+suPAOfdu87pS9Nh1q6iB1pDSP xk6z3zKco0j/H2LELyIWNeQv3X8m0evStBK6Afuzft1WilCRjFqzlm5DI4ibLYwPax9T HVh4zO/nm3iU4rqfwQios4uLR6BW0lfjPCtrPKdOVpLyGUeW9wZaSljxQ0oMkFXJf8Kb 1N8ecY74SMsWAxLEJm80qL63reu/Et9gOaTexNrvZMKQMuRcgPW1JOdu2QKw4qnsseJL ye0w== MIME-Version: 1.0 X-Received: by 10.60.128.130 with SMTP id no2mr394675oeb.70.1432176086387; Wed, 20 May 2015 19:41:26 -0700 (PDT) Received: by 10.202.216.3 with HTTP; Wed, 20 May 2015 19:41:26 -0700 (PDT) Date: Thu, 21 May 2015 05:41:26 +0300 Message-ID: Subject: New CC modules not loading after Kernel recompilation From: Karlis Laivins To: freebsd-net@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 May 2015 02:41:27 -0000 Good Morning, I have a following issue, maybe someone has encountered this and can provide me with a quick solution to a following issue. I have compiled a module, which is a modified version of the NewReno congestion control algorithm. I tried to load it into Kernel successfully before I recompiled Kernel with a following config file, so I can use Imunes and test the new module: include GENERIC nooptions FLOWTABLE options VIMAGE options VNET_DEBUG options MROUTING options IPSEC device crypto options IPSEC_DEBUG options DDB options KDB The problem is - after the Kernel has been reompiled, I can no longer load the module with kldload. The error I get is: link_elf: symbol tcp_do_rfc3465 undefined kldload: can't load cc_changedreno.ko: No such file or directory And this is despite the fact the cc_changedreno.ko module is in /boot/kernel/. Thank you in advance! BR, Karlis