svn commit: r254830 - head/sys/kern

Andre Oppermann andre at FreeBSD.org
Sun Aug 25 09:40:16 UTC 2013


Author: andre
Date: Sun Aug 25 09:40:15 2013
New Revision: 254830
URL: http://svnweb.freebsd.org/changeset/base/254830

Log:
  Adjust socow_iodone() after r254799.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/kern/uipc_cow.c

Modified: head/sys/kern/uipc_cow.c
==============================================================================
--- head/sys/kern/uipc_cow.c	Sun Aug 25 08:56:09 2013	(r254829)
+++ head/sys/kern/uipc_cow.c	Sun Aug 25 09:40:15 2013	(r254830)
@@ -70,10 +70,10 @@ struct netsend_cow_stats {
 
 static struct netsend_cow_stats socow_stats;
 
-static void socow_iodone(void *addr, void *args);
+static void socow_iodone(struct mbuf *m, void *addr, void *args);
 
 static void
-socow_iodone(void *addr, void *args)
+socow_iodone(struct mbuf *m, void *addr, void *args)
 {	
 	struct sf_buf *sf;
 	vm_page_t pp;


More information about the svn-src-head mailing list