MFp4 CH=183259:

No reason to use if_free_type() as we don't change our type.
  Just if_free() is fine.

MFC after:	3 days
This commit is contained in:
Bjoern A. Zeeb 2010-09-02 16:11:12 +00:00
parent 2cd149f045
commit 73e39d6137
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=212152

View File

@ -892,9 +892,9 @@ epair_clone_destroy(struct if_clone *ifc, struct ifnet *ifp)
* we need to switch before freeing them.
*/
CURVNET_SET_QUIET(oifp->if_vnet);
if_free_type(oifp, IFT_ETHER);
if_free(oifp);
CURVNET_RESTORE();
if_free_type(ifp, IFT_ETHER);
if_free(ifp);
free(scb, M_EPAIR);
free(sca, M_EPAIR);
ifc_free_unit(ifc, unit);