From owner-freebsd-hackers@FreeBSD.ORG Sun Jan 13 16:16:22 2008 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1860116A417 for ; Sun, 13 Jan 2008 16:16:22 +0000 (UTC) (envelope-from dgiagio@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.186]) by mx1.freebsd.org (Postfix) with ESMTP id E852213C442 for ; Sun, 13 Jan 2008 16:16:21 +0000 (UTC) (envelope-from dgiagio@gmail.com) Received: by rv-out-0910.google.com with SMTP id l15so1833986rvb.43 for ; Sun, 13 Jan 2008 08:16:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=1dww6s2mVFrcK5YX1yWZulVnVEPy4wRKxZNMu5rFauk=; b=uHrCoEP7z58H+yRxlD6QBaE8K4g03w1Im2Ow5Xxt4N/nSgu7ou1F/ypFQm++7XsZbvVyOWSTtY/bZWm7624RJo9t54seJCqdrLuxHjfKrPS9Ynbm8pz3wLh3QCeYFQO/gkeKsXTNyM4M2aRAiga6oftCW0GHtxg/vXMX6zdCuAY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=jmfeKm8sEiJ91PoPj4ws+91yIKx5GJGZ4Dx2UGKEZFemtln7y+1zeZ2VUnR1OuXmokE7GPCCa5QvaAVRw3dfMlBaUZ40Qx9VAH6kJjxVUzu4aNkb13qAyM4CSDlzoQLlqgZ77Tfb4BTm4bDH7NFemnCndfBX1zo4OdNnKCiHoV0= Received: by 10.141.178.5 with SMTP id f5mr3228116rvp.112.1200239521591; Sun, 13 Jan 2008 07:52:01 -0800 (PST) Received: by 10.141.129.11 with HTTP; Sun, 13 Jan 2008 07:52:01 -0800 (PST) Message-ID: <1b0798830801130752k4209bce7yc5e1cbec7dd67f82@mail.gmail.com> Date: Sun, 13 Jan 2008 12:52:01 -0300 From: "Diego Giagio" To: "freebsd-current@freebsd.org" , freebsd-hackers@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: NDIS debugging X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jan 2008 16:16:22 -0000 Hi, Recently i've bought a new laptop (Dell Precision M2300) which came with Intel 4965 Wifi chipset. Since there's no native driver available yet, I've been trying to get it to work throught Project Evil (NDIS Windows Driver NETw4x64). At first, the driver complained for "no match for InitializeSListHead". Then I figured it out how to implement that function (a simple bzero on slist_head, just like ndiswrapper on Linux) and it stopped complaining. I'm able to kldload NETx4x64_sys.ko with success, but it stays silent. It just loads two dependent modules (if_nids.ko and nids.ko) and nothing is printed into dmesg or console. Also, there's no ndis0 device. As far as I can get I could see that DriverEntry()'s module is working OK as it returns STATUS_SUCCESS on subr_windrv.c's windrv_load(). So, the question is: Is there a way to turn on verbose debugging on the NDIS subsystem? Would be great if I could get some more info on what's going wrong. Thank you. -- DG