Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Feb 2012 08:31:15 +0000 (UTC)
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r231009 - head/sys/net
Message-ID:  <201202050831.q158VFO7073862@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: glebius
Date: Sun Feb  5 08:31:15 2012
New Revision: 231009
URL: http://svn.freebsd.org/changeset/base/231009

Log:
  In ifa_init() initialize if_data.ifi_datalen. This would be
  required after upcoming changes from bz@.
  
  Discussed with:	bz

Modified:
  head/sys/net/if.c

Modified: head/sys/net/if.c
==============================================================================
--- head/sys/net/if.c	Sun Feb  5 07:19:00 2012	(r231008)
+++ head/sys/net/if.c	Sun Feb  5 08:31:15 2012	(r231009)
@@ -1416,6 +1416,7 @@ ifa_init(struct ifaddr *ifa)
 
 	mtx_init(&ifa->ifa_mtx, "ifaddr", NULL, MTX_DEF);
 	refcount_init(&ifa->ifa_refcnt, 1);
+	ifa->if_data.ifi_datalen = sizeof(ifa->if_data);
 }
 
 void



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201202050831.q158VFO7073862>