From: Dan Magenheimer <dan.magenheimer@oracle.com>
To: Eric Dumazet <eric.dumazet@gmail.com>
Cc: netdev@vger.kernel.org, Konrad Wilk <konrad.wilk@oracle.com>,
linux-mm <linux-mm@kvack.org>
Subject: RE: [RFC] non-preemptible kernel socket for RAMster
Date: Tue, 5 Jul 2011 12:07:10 -0700 (PDT) [thread overview]
Message-ID: <d3199429-87d1-4917-bf1d-be1fbbc1e64f@default> (raw)
In-Reply-To: <1309890239.2545.10.camel@edumazet-laptop>
> > > > +++ linux-2.6.37-ramster/net/core/sock.c 2011-07-03 19:10:04.340980799 -0600
> > > > @@ -1587,6 +1587,14 @@ static void __lock_sock(struct sock *sk)
> > > > __acquires(&sk->sk_lock.slock)
> > > > {
> > > > DEFINE_WAIT(wait);
> > > > + if (!preemptible()) {
> > > > + while (sock_owned_by_user(sk)) {
> > > > + spin_unlock_bh(&sk->sk_lock.slock);
> > > > + cpu_relax();
> > > > + spin_lock_bh(&sk->sk_lock.slock);
> > > > + }
> > > > + return;
> > > > + }
> > >
> > > Hmm, was this tested on UP machine ?
> >
> > Hi Eric --
> >
> > Thanks for the reply!
> >
> > I hadn't tested UP in awhile so am testing now, and it seems to
> > work OK so far. However, I am just testing my socket, *not* testing
> > sockets in general. Are you implying that this patch will
> > break (kernel) sockets in general on a UP machine? If so,
> > could you be more specific as to why? (Again, I said
> > I am a networking idiot. ;-) I played a bit with adding
> > a new SOCK_ flag and triggering off of that, but this
> > version of the patch seemed much simpler.
>
> Say you have two processes and socket S
>
> One process locks socket S, and is preempted by another process.
>
> This second process is non preemptible and try to lock same socket.
>
> -> deadlock, since P1 never releases socket S
Oh, OK. My use model is that a socket that is used non-preemptible
must always be used non-preemptible. In other words, this kind
of socket is an extreme form of non-blocking. Doesn't that seem
like a reasonable constraint?
Thanks,
Dan
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2011-07-05 19:07 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-05 15:54 [RFC] non-preemptible kernel socket for RAMster Dan Magenheimer
2011-07-05 16:30 ` Eric Dumazet
2011-07-05 17:25 ` Dan Magenheimer
2011-07-05 18:23 ` Eric Dumazet
2011-07-05 19:07 ` Dan Magenheimer [this message]
2011-07-05 16:36 ` Loke, Chetan
2011-07-05 17:25 ` Dan Magenheimer
2011-07-05 17:52 ` Loke, Chetan
2011-07-05 19:18 ` Dan Magenheimer
2011-07-05 22:27 ` Loke, Chetan
2011-07-06 1:05 ` Dan Magenheimer
2011-07-06 18:12 ` Loke, Chetan
2011-07-07 15:34 ` Dan Magenheimer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d3199429-87d1-4917-bf1d-be1fbbc1e64f@default \
--to=dan.magenheimer@oracle.com \
--cc=eric.dumazet@gmail.com \
--cc=konrad.wilk@oracle.com \
--cc=linux-mm@kvack.org \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).