svn commit: r288916 - head/sys/kern

Gleb Smirnoff glebius at FreeBSD.org
Tue Oct 6 09:43:50 UTC 2015


Author: glebius
Date: Tue Oct  6 09:43:49 2015
New Revision: 288916
URL: https://svnweb.freebsd.org/changeset/base/288916

Log:
  Remove debugging variable from r143761.

Modified:
  head/sys/kern/uipc_mbuf.c

Modified: head/sys/kern/uipc_mbuf.c
==============================================================================
--- head/sys/kern/uipc_mbuf.c	Tue Oct  6 08:43:48 2015	(r288915)
+++ head/sys/kern/uipc_mbuf.c	Tue Oct  6 09:43:49 2015	(r288916)
@@ -1034,8 +1034,6 @@ bad:
  * the amount of empty space before the data in the new mbuf to be specified
  * (in the event that the caller expects to prepend later).
  */
-int MSFail;
-
 struct mbuf *
 m_copyup(struct mbuf *n, int len, int dstoff)
 {
@@ -1072,7 +1070,6 @@ m_copyup(struct mbuf *n, int len, int ds
 	return (m);
  bad:
 	m_freem(n);
-	MSFail++;
 	return (NULL);
 }
 


More information about the svn-src-all mailing list