Re: Help for kernel module programming

2006-11-29 Thread Stephen Hemminger
On Wed, 29 Nov 2006 15:40:05 +0530 "prajakta choudhari" <[EMAIL PROTECTED]> wrote: > Hi: > > Can i use devnet_ioctl to assign ip address in a kernel module You could, but you shouldn't -- Stephen Hemminger <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe linux-ne

Re: Help for kernel module programming

2006-11-29 Thread prajakta choudhari
Hi: Can i use devnet_ioctl to assign ip address in a kernel module -- - - Regards, Prajakta Choudhari, Project Engineer, Networking and Internet Software Group, CDAC,Pune Email:[EMAIL PROTECTED] Mobile:9890302701 - To uns

Re: Help for kernel module programming

2006-11-29 Thread Sharmila
Hi , You can use a function in Linux source only when it is exported by Linux using EXPORT_SYMBOL.You can find all exported symbols in net/netsyms.c.Unless a function is exported, its usage will result in "unresolved symbol" Sharmila. At 02:00 PM 11/29/2006, prajakta choudhari wrote: