Source-Changes-HG archive

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

[src/trunk]: src/sys/kern m_split: restore a behaviour on M_PKTHDR, which was...



details:   https://anonhg.NetBSD.org/src/rev/0fc1d29bd60b
branches:  trunk
changeset: 569882:0fc1d29bd60b
user:      yamt <yamt%NetBSD.org@localhost>
date:      Sat Sep 11 19:55:19 2004 +0000

description:
m_split: restore a behaviour on M_PKTHDR, which was unintentionaly
changed when i added m_copyback_cow.

diffstat:

 sys/kern/uipc_mbuf.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 057958718406 -r 0fc1d29bd60b sys/kern/uipc_mbuf.c
--- a/sys/kern/uipc_mbuf.c      Sat Sep 11 18:01:58 2004 +0000
+++ b/sys/kern/uipc_mbuf.c      Sat Sep 11 19:55:19 2004 +0000
@@ -922,7 +922,7 @@
 m_split(struct mbuf *m0, int len0, int wait)
 {
 
-       return m_split0(m0, len0, wait, 0);
+       return m_split0(m0, len0, wait, 1);
 }
 
 static struct mbuf *



Home | Main Index | Thread Index | Old Index