Re: Badness in local_bh_enable at kernel/softirq.c:140 with inet_stream

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

 



On Thu, 6 Apr 2006, jordi Vaquero wrote:

> Hello
>
> I'm trying to make a Linux Kernel module. My module has a network
> comunication with sockets, I use the functions like this skeleton,
>
>            sd = sock_create(AF_INET,SOCK_STREAM,IPPROTO_TCP,&sock);
>                if(sd<0){
>                printk(KERN_ERR "Error\n");
>            }else{
>                sout.sin_family = AF_INET;
>                err = inet_aton("172.16.151.1",&sout.sin_addr); //this
>        function works well, I implemented it.
>                sout.sin_port = htons(20000);
>                sd = sock->ops->connect(sock,(struct sockaddr*)&sout,
>        sizeof(sout),O_RDWR);
>                if(sd<0){
>                    printk(KERN_ERR "Error \n");
>                    sock_release(sock);
>                }else{
>                     USE SENDMSG and RECVMSG
>                        ...
>                        ...
>                        ...
>                   sock_release(sock);
>                }
>
> My problem is that sometimes, at some point near the connect function, a
> warning is launched and dmesg shows this:
>
[SNIPPED... Crap]

This has become a FAQ...
If you need to do this INSIDE the kernel, you need to do it from
a kernel thread. Otherwise, your socket is indistinguishable
from somebody else's open file descriptor. A file descriptor needs
a CONTEXT! The kernel doesn't have a CONTEXT! You need a process
to have a context, either a kernel thread or a user-mode task.

Cheers,
Dick Johnson
Penguin : Linux version 2.6.15.4 on an i686 machine (5589.42 BogoMips).
Warning : 98.36% of all statistics are fiction, book release in April.
_


****************************************************************
The information transmitted in this message is confidential and may be privileged.  Any review, retransmission, dissemination, or other use of this information by persons or entities other than the intended recipient is prohibited.  If you are not the intended recipient, please notify Analogic Corporation immediately - by replying to this message or by sending an email to [email protected] - and destroy all copies of this information, including any attachments, without reading or disclosing them.

Thank you.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux