linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: "Stephen Williams" <612dlag102@sneakemail.com>
To: linuxppc-embedded@lists.linuxppc.org
Subject: Head of linuxppc-2.4 broekn by davem patch
Date: Fri, 11 Jun 2004 09:07:13 -0700	[thread overview]
Message-ID: <29963-82182@sneakemail.com> (raw)
In-Reply-To: <1086934906.4820.2.camel@lucy.pep-kaufbeuren.de>


Stefan Nickl Stefan.Nickl-at-kontron.com |PPC Linux Embedded| wrote:
> I already sent this patch to the list and to "davem" who
> commited the faulty version, but nobody seems to care...

Here is the exact same patch, packaged slightly differently
and re-sent, just in case it got lost in someone's inbox.
It is also possible that davem is thinking in terms of
changing the sk_buff definition t match this file. Either
way, something must be done.

# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
#   2004/06/11 09:00:55-07:00 steve@wing.XXXXXXXXXX
#   The sk_rcvbuf member does not exist in struct sk_buff
#   as declared in linux-2.4 skbuff.h.
#
# net/ipv4/tcp_input.c
#   2004/06/11 09:00:53-07:00 steve@wing.XXXXXXXXXX +2 -2
#   The sk_rcvbuf member does not exist in struct sk_buff
#   as declared in linux-2.4 skbuff.h.
#
diff -Nru a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
--- a/net/ipv4/tcp_input.c      2004-06-11 09:01:35 -07:00
+++ b/net/ipv4/tcp_input.c      2004-06-11 09:01:35 -07:00
@@ -476,8 +476,8 @@
                                   16 + sizeof(struct sk_buff));
                         space *= rcvmem;
                         space = min(space, sysctl_tcp_rmem[2]);
-                       if (space > sk->sk_rcvbuf)
-                               sk->sk_rcvbuf = space;
+                       if (space > sk->rcvbuf)
+                               sk->rcvbuf = space;
                 }
         }


--
Steve Williams                "The woods are lovely, dark and deep.
steve at XXXXXXXXXX           But I have promises to keep,
http://www.XXXXXXXXXX         and lines to code before I sleep,
http://www.picturel.com       And lines to code before I sleep."


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

       reply	other threads:[~2004-06-11 16:07 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1086934906.4820.2.camel@lucy.pep-kaufbeuren.de>
2004-06-11 16:07 ` Stephen Williams [this message]
2004-06-11 21:40   ` Head of linuxppc-2.4 broekn by davem patch Tom Rini
2004-06-11 22:01     ` Stephen Williams

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=29963-82182@sneakemail.com \
    --to=612dlag102@sneakemail.com \
    --cc=linuxppc-embedded@lists.linuxppc.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).