* sk_prot->sendmsg(...) giving me a kernel oops on kernels past 2.6.20
@ 2007-12-11 22:51 Kevin Wilson
0 siblings, 0 replies; only message in thread
From: Kevin Wilson @ 2007-12-11 22:51 UTC (permalink / raw)
To: netdev
I've searched everywhere (including this list) for a report but couldn't
find anything that can tell me what implementation step(s) I am missing.
Essentially all the kernels past 2.6.20 gives me a kernel oops on the
sendmsg code.
I know the sk_buff changes worked things over quite a bit but I have (or
thought I did) those changes accounted for in our driver. Are there any
specific implementation changes we need to add that we didn't need prior
before we now use sendmsg()? Below is the general gist of the code I am
executing, any pointers to what I am missing would be very welcome.
Thanks a bunch.
Kevin
***************************************
done in userland and passed via ioctl:
***************************************
sk = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
tcp_params.boxid = boxIndex;
tcp_params.sk = sk;
tcp_params.rbuf = malloc(4096);
tcp_params.rbuf_size = 4096;
tcp_params.wbuf = malloc(1460);
tcp_params.wbuf_size = 1460;
rc = ioctl(fd, SI_SET_TCP, &tcp_params);
***************************************
done in kernel space:
***************************************
struct tcp_sock *tp;
struct sock *mysock;
tp = sockfd_lookup(tcp_params.sk, &i);
mysock = tp->sk;
mysock->sk_prot->sendmsg(...); <-- OOPS HERE
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-12-11 23:02 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-11 22:51 sk_prot->sendmsg(...) giving me a kernel oops on kernels past 2.6.20 Kevin Wilson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).