svn commit: r298041 - in head/sys/dev/hyperv: netvsc storvsc

Sepherosa Ziehau sephe at FreeBSD.org
Fri Apr 15 08:08:47 UTC 2016


Author: sephe
Date: Fri Apr 15 08:08:46 2016
New Revision: 298041
URL: https://svnweb.freebsd.org/changeset/base/298041

Log:
  hyperv: No need to zero out softc
  
  MFC after:	1 week
  Sponsored by:	Microsoft OSTC

Modified:
  head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c
  head/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c

Modified: head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c
==============================================================================
--- head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c	Fri Apr 15 08:01:07 2016	(r298040)
+++ head/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c	Fri Apr 15 08:08:46 2016	(r298041)
@@ -419,7 +419,6 @@ netvsc_attach(device_t dev)
 
 	sc = device_get_softc(dev);
 
-	bzero(sc, sizeof(hn_softc_t));
 	sc->hn_unit = unit;
 	sc->hn_dev = dev;
 

Modified: head/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c
==============================================================================
--- head/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c	Fri Apr 15 08:01:07 2016	(r298040)
+++ head/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c	Fri Apr 15 08:08:46 2016	(r298041)
@@ -981,8 +981,6 @@ storvsc_attach(device_t dev)
 		goto cleanup;
 	}
 
-	bzero(sc, sizeof(struct storvsc_softc));
-
 	/* fill in driver specific properties */
 	sc->hs_drv_props = &g_drv_props_table[stor_type];
 


More information about the svn-src-head mailing list