Remove all traces of M_VFSCONF, which were for all practical

purposes unused.
This commit is contained in:
Poul-Henning Kamp 1997-10-11 13:11:32 +00:00
parent 33262b2341
commit a6cf5c6dfc
2 changed files with 2 additions and 5 deletions

View File

@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: kern_lkm.c,v 1.41 1997/08/02 14:31:32 bde Exp $
* $Id: kern_lkm.c,v 1.42 1997/09/14 02:52:14 peter Exp $
*/
#include <sys/param.h>
@ -661,8 +661,6 @@ _lkm_vfs(lkmtp, cmd)
return EBUSY;
}
FREE(vfsp, M_VFSCONF);
prev_vfsp->vfc_next = vfsp->vfc_next;
/*

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)malloc.h 8.5 (Berkeley) 5/3/95
* $Id: malloc.h,v 1.26 1997/10/10 14:05:34 phk Exp $
* $Id: malloc.h,v 1.27 1997/10/10 18:15:45 phk Exp $
*/
#ifndef _SYS_MALLOC_H_
@ -139,7 +139,6 @@ MALLOC_MAKE_TYPE(M_SECA, "key mgmt", "security associations, key management");
MALLOC_MAKE_TYPE(M_BIOBUF, "BIO buffer", "BIO buffer");
MALLOC_MAKE_TYPE(M_KTRACE, "KTRACE", "KTRACE");
MALLOC_MAKE_TYPE(M_SELECT, "select", "select() buffer");
MALLOC_MAKE_TYPE(M_VFSCONF, "VFS conf", "vfsconf structure"); /* XXX only free() ??? */
MALLOC_MAKE_TYPE(M_AIO, "AIO", "AIO structure(s)");
MALLOC_MAKE_TYPE(M_ZONE, "ZONE", "Zone header");
MALLOC_MAKE_TYPE(M_HOSTCACHE, "hostcache", "per-host information cache structure");