[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: kmalloc question



>char *temp;
>
>if(!temp)
>	/* temp has not been kmalloced yet */
>else
>	/* temp has been kmalloced */


Where have you used kmalloc here ? 

char *temp;
temp = (char*) kmalloc(GFP_KERNEL,size);
if(!temp)
       /* cannot allocate */






--
Kernelnewbies: Help each other learn about the Linux kernel.
Archive:       http://mail.nl.linux.org/kernelnewbies/
IRC Channel:   irc.openprojects.net / #kernelnewbies
Web Page:      http://www.kernelnewbies.org/