Re: NDIS debugging

2008-01-14 Thread Weongyo Jeong
On Sun, Jan 13, 2008 at 12:52:01PM -0300, 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.

As far as I know, there is no verbose debugging mode on the NDIS
subsystem.  Only a variable `ndis_debug' which is defined in if_ndis.c
can be available to turn on `if_ndis' module's debugging mode.

regards,
Weongyo Jeong

___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: finished? porting ZyDAS zb1211/zb1211b driver for FreeBSD

2007-12-19 Thread Weongyo Jeong
On Fri, Aug 17, 2007 at 09:52:26PM +0200, Nils Beyer wrote:
 Weongyo Jeong wrote:
 I just finished to port zyd(4) from NetBSD for FreeBSD and it works well 
 [...]
 A patch which is for CURRENT is available at [...]
 
 That's great to read. Is that driver also possible for 6.2-RELEASE and 
 6-STABLE?

This email is just for your information.  Recently, I tried to port
zyd(4) driver against RELENG_6 and the result, WIP version, come out
here:

http://weongyo.org/patches/zyd_RELENG_6-20071219.tar.gz

However, this version does not work properly in RELENG_6.  When you test
this, you will succeed in attaching the device and getting IP address using
dhclient(8) but you can see a lot of packet loss.

I think that this problem come from the lack of MFCs of ieee80211
framework or USB framework to RELENG_6 because this version works well
in CURRENT with small changes.

After testing more cases, I will let you know when problems on RELENG_6
are solved.

Regards,
Weongyo Jeong
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: finished? porting ZyDAS zb1211/zb1211b driver for FreeBSD

2007-08-17 Thread Weongyo Jeong
On Fri, Aug 17, 2007 at 09:49:54PM +0200, Nils Beyer wrote:
 Weongyo Jeong wrote:
 I just finished to port zyd(4) from NetBSD for FreeBSD and it works 
 well[...]
 A patch which is for CURRENT is available at[...]
 
 That's great to read. Is that driver also possible for 6.2-RELEASE and 
 6-STABLE?

This driver isn't tested on FreeBSD 6.2-RELEASE and 6-STABLE and I'm not
sure it works on it.

However, I also hope this driver works on FreeBSD 6.2-RELEASE and
6-STABLE, so I have a plan to release the patch for them.

Best Regards,
Weongyo Jeong

___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: finished? porting ZyDAS zb1211/zb1211b driver for FreeBSD

2007-08-12 Thread Weongyo Jeong
Ok.  I would try to port the zyd driver to the HPS USB stack when I have
spare time.  When some progress is made, I will let you know about it.

Best Regards,
Weongyo Jeong

On Fri, Aug 10, 2007 at 12:10:20PM +0200, Hans Petter Selasky wrote:
 On Thursday 09 August 2007, M. Warner Losh wrote:
  In message: [EMAIL PROTECTED]
 
  Hans Petter Selasky [EMAIL PROTECTED] writes:
  : On Sunday 05 August 2007, Weongyo Jeong wrote:
  :  Hello,
  : 
  :  I just finished to port zyd(4) from NetBSD for FreeBSD and it works
  :  well in my environment without any panic ;-) (In zb1211b, RF AL2230,
  :  open auth, 54M).  But It's not perfect and not be tested on another RF
  :  controllers and not on zb1211.  IMO, it would work too.
  : 
  :  A patch which is for CURRENT is available at
  :  http://weongyo.org/patches/freebsd/if_zyd-CURRENT-20070805.diff
  : 
  :  Comments, questions and feedbacks always welcome.
  : 
  :  PS. special thanks to Pyun YongHyeon.
  :
  : Hi,
  :
  : Is it possible that you could spend some time porting your ZYD driver to
  : the HPS USB stack aswell ?
 
  Isn't zyd already in the hps stack?
 
  Warner
 
 Yes it is, but the version I ported was not functional at that time.
 
 --HPS
 ___
 freebsd-hackers@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
 To unsubscribe, send any mail to [EMAIL PROTECTED]
___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


finished? porting ZyDAS zb1211/zb1211b driver for FreeBSD

2007-08-05 Thread Weongyo Jeong
Hello,

I just finished to port zyd(4) from NetBSD for FreeBSD and it works well in my 
environment without any panic ;-) (In zb1211b, RF AL2230, open auth, 54M).  But 
It's not perfect and not be tested on another RF controllers and not on zb1211. 
 IMO, it would work too.

A patch which is for CURRENT is available at
http://weongyo.org/patches/freebsd/if_zyd-CURRENT-20070805.diff

Comments, questions and feedbacks always welcome.

PS. special thanks to Pyun YongHyeon.

Best Regards,
Weongyo Jeong

___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]


A sendfile(2) extension module.

2007-05-25 Thread Weongyo Jeong
Hello.

I have written a simple sendfile(2) extension module which supports a transfer 
from a stream socket to a stream socket.

For details, you can check the below URL:
http://weongyo.org/project/freebsd/sendsock/

I don't know that it is useful but I think that it is helpful when you have a 
plan to make a proxy.

___
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to [EMAIL PROTECTED]