From owner-freebsd-hackers@FreeBSD.ORG Sun Jan 13 16:02:32 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 6423F16A47C for ; Sun, 13 Jan 2008 16:02:32 +0000 (UTC) (envelope-from dgiagio@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.191]) by mx1.freebsd.org (Postfix) with ESMTP id 8EE7B13C45B for ; Sun, 13 Jan 2008 16:02:31 +0000 (UTC) (envelope-from dgiagio@gmail.com) Received: by rv-out-0910.google.com with SMTP id l15so1830907rvb.43 for ; Sun, 13 Jan 2008 08:02:31 -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:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=1lf4MPlf3JmaF5kpQkRH1DqmYCjYqLc1CnTk9WX0YeU=; b=llKIwAWOLiaaHNAxqJRDe2qy+LPjrrx5leVY7Lv7ega8MzEa6b+JofViMtt56ulpTE8bzWItnli6ZTQJAOIW2sRXV/edXje91iBXWCQoWH9Ap+2PPnXxOdeliXV5h/aQuTuzti2pyM2Cq0za8ZlJleN/T5oYBJYt9bQ1x9IrC4g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=SW3150Jo/uh4Ly21EE4L97QTsQKbHrvSKXCJ5EOFLlkvOGATRH1fIF1n9Xp4R/AJaaxqzsqkRSQFpRAEblul8j/WVauka5UcBUBmxMmTQ8FBV0LCRSJM5FZaGeZOcYd5UfnCvynGGZvLJokYlQz1SmjeOLFvConlMQy7KMRt1js= Received: by 10.141.51.15 with SMTP id d15mr3225422rvk.118.1200239722996; Sun, 13 Jan 2008 07:55:22 -0800 (PST) Received: by 10.141.129.11 with HTTP; Sun, 13 Jan 2008 07:55:22 -0800 (PST) Message-ID: <1b0798830801130755y440aa6cm3deef0b5788a9860@mail.gmail.com> Date: Sun, 13 Jan 2008 12:55:22 -0300 From: "Diego Giagio" To: "freebsd-current@freebsd.org" , freebsd-hackers@freebsd.org In-Reply-To: <1b0798830801130752k4209bce7yc5e1cbec7dd67f82@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1b0798830801130752k4209bce7yc5e1cbec7dd67f82@mail.gmail.com> Cc: Subject: Re: 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:02:32 -0000 I forgot to mention: # uname -a FreeBSD 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Sun Jan 13 12:46:48 BRST 2008 root@oblivion:/usr/src/sys/amd64/compile/GENERIC amd64 # uname -m amd64 # I'm using CURRENT as of 11/Jan/08. On Jan 13, 2008 12:52 PM, Diego Giagio wrote: > 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 >