Re: Loop detected - calling function from different modules

2006-09-03 Thread Frank Schneider
hi Stephen, you can check these: http://bcm43xx.berlios.de/ http://madwifi.org/ R /frank From: Stephen Hemminger [EMAIL PROTECTED] To: Frank Schneider [EMAIL PROTECTED] CC: netdev@vger.kernel.org Subject: Re: Loop detected - calling function from different modules Date: Wed, 30 Aug 2006

Re: Loop detected - calling function from different modules

2006-08-31 Thread Frank Schneider
in ath_pci module that an outgoing data frame is gonna send out? Any suggestions to do that please ? regards, Frank From: Johannes Berg [EMAIL PROTECTED] On Wed, 2006-08-30 at 22:58 +0200, Frank Schneider wrote: and i need to do same in reverse way, i.e. call a function from wlan module

Loop detected - calling function from different modules

2006-08-30 Thread Frank Schneider
hi all, I am writing/customizing a network(wlan pc card) device driver for Linux kernel 2.6.12 Think about I have two modules e.g. ath_pci and wlan module. I can call a function from a .c file which is implemented in a .c file in wlan module by using EXPORT_SYMBOL macro.. and i need to

dealing with hard_start_xmit of net_device

2006-08-29 Thread Frank Schneider
hi all, I am customizing a linux driver code of WLAN card as Access Point on Linux kernel 2.6.12 to work with. We know struct net_device has a member pointer to a method called hard_start_xmit that initiates the transmission through the device. Data should contain sk_buff structure. For