From: nhorman@redhat.com
To: Sridhar Samudrala <sri@us.ibm.com>
Cc: nhorman@redhat.com, "David S. Miller" <davem@davemloft.net>,
netdev@oss.sgi.com, lksctp-developers@lists.sourceforge.net
Subject: Re: [Patch] sctp: add receive buffer accounting to sctp (fwd)
Date: Fri, 11 Mar 2005 10:48:36 -0500 [thread overview]
Message-ID: <20050311154836.GC19052@hmsendeavour.rdu.redhat.com> (raw)
In-Reply-To: <Pine.LNX.4.61.0503111947470.6007@localhost.localdomain>
[-- Attachment #1: Type: text/plain, Size: 2910 bytes --]
On Fri, Mar 11, 2005 at 07:58:50PM +0530, Sridhar Samudrala wrote:
> Neil,
>
> I guess you may not have tried to compile SCTP with this patch.
> 2.4 struct sock members do not have sk_ prefix.
> So you need to replace sk_rmem_alloc and sk_rcvbuf with rmem_alloc and
> rcvbuf.
>
No, I compiled the kernel, I just forgot to enable CONFIG_IP_SCTP. I must have
booted to a 2.6 kernel on my dev box by accident when I ran the tests. I'm a
dummy, sorry :). I'll repost the patch (after I veryify that I build and test
the actual code).
Regards,
Neil
> Thanks
> Sridhar
>
> On Fri, 11 Mar 2005 nhorman@redhat.com wrote:
>
> >On Thu, Mar 10, 2005 at 06:38:56PM -0800, David S. Miller wrote:
> >>On Thu, 10 Mar 2005 10:43:42 -0500
> >>nhorman@redhat.com wrote:
> >>
> >>>Repost of my ealier rcvbuf patch. No changes, but rediffed to apply
> >>>cleanly to
> >>>the head of the bitkeeper tree. Passes all lksctp regression tests
> >>
> >>Applied, thanks Neil.
> >
> >You're quite welcome. Heres the 2.4 version of the same patch that you
> >requested. Applies clean against the bitkeeper head.
> >
> >Signed-off-by: Neil Horman <nhorman@redhat.com>
> >
> >[nhorman@hmsendeavour kernel]$ diffstat linux-2.4-sctp.rcvbuf.patch
> >input.c | 21 +++++++++++++++++++++
> >1 files changed, 21 insertions(+)
> >
> >
> >--- linux-2.4-sctp/net/sctp/input.c.orig 2005-03-10
> >13:36:49.000000000 -0500
> >+++ linux-2.4-sctp/net/sctp/input.c 2005-03-10 13:51:25.000000000 -0500
> >@@ -100,6 +100,21 @@
> > return 0;
> >}
> >
> >+/* The free routine for skbuffs that sctp receives */
> >+static void sctp_rfree(struct sk_buff *skb)
> >+{
> >+ atomic_sub(sizeof(struct sctp_chunk),&skb->sk->sk_rmem_alloc);
> >+ sock_rfree(skb);
> >+}
> >+
> >+/* The ownership wrapper routine to do receive buffer accounting */
> >+static void sctp_rcv_set_owner_r(struct sk_buff *skb, struct sock *sk)
> >+{
> >+ skb_set_owner_r(skb,sk);
> >+ skb->destructor = sctp_rfree;
> >+ atomic_add(sizeof(struct sctp_chunk),&sk->sk_rmem_alloc);
> >+}
> >+
> >/*
> > * This is the routine which IP calls when receiving an SCTP packet.
> > */
> >@@ -183,6 +198,10 @@
> > rcvr = asoc ? &asoc->base : &ep->base;
> > sk = rcvr->sk;
> >
> >+ if ((sk) && (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf))
> >+ goto discard_release;
> >+
> >+
> > if (!ipsec_sk_policy(sk, skb))
> > goto discard_release;
> >
> >@@ -197,6 +216,8 @@
> > goto discard_release;
> > }
> >
> >+ sctp_rcv_set_owner_r(skb,sk);
> >+
> > /* Remember what endpoint is to handle this packet. */
> > chunk->rcvr = rcvr;
> >
> >
>
> --
--
/***************************************************
*Neil Horman
*Software Engineer
*Red Hat, Inc.
*nhorman@redhat.com
*gpg keyid: 1024D / 0x92A74FA1
*http://pgp.mit.edu
***************************************************/
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
prev parent reply other threads:[~2005-03-11 15:48 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-03-02 19:02 [Patch] sctp: add receive buffer accounting to sctp (fwd) Sridhar Samudrala
2005-03-10 5:16 ` David S. Miller
2005-03-10 12:08 ` nhorman
2005-03-10 15:43 ` nhorman
2005-03-11 2:38 ` David S. Miller
2005-03-11 12:57 ` nhorman
2005-03-11 14:28 ` Sridhar Samudrala
2005-03-11 15:48 ` nhorman [this message]
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=20050311154836.GC19052@hmsendeavour.rdu.redhat.com \
--to=nhorman@redhat.com \
--cc=davem@davemloft.net \
--cc=lksctp-developers@lists.sourceforge.net \
--cc=netdev@oss.sgi.com \
--cc=sri@us.ibm.com \
/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).