diff options
| author | Hartmut Brandt <harti@FreeBSD.org> | 2003-07-23 14:25:53 +0000 |
|---|---|---|
| committer | Hartmut Brandt <harti@FreeBSD.org> | 2003-07-23 14:25:53 +0000 |
| commit | e717cfbc404119ee3bccebe59a14a7c35e729c72 (patch) | |
| tree | 3a7f372063a0ab4b1c153da4787dfb0b8b14c64d /sys/netatm | |
| parent | b4be5bd22bcc42f469818aca1fff9b769130ee02 (diff) | |
Notes
Diffstat (limited to 'sys/netatm')
| -rw-r--r-- | sys/netatm/ipatm/ipatm_load.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/netatm/ipatm/ipatm_load.c b/sys/netatm/ipatm/ipatm_load.c index be9560c869ade..c67239caca4e4 100644 --- a/sys/netatm/ipatm/ipatm_load.c +++ b/sys/netatm/ipatm/ipatm_load.c @@ -99,7 +99,6 @@ Atm_endpoint ipatm_endpt = { }; uma_zone_t ipatm_vc_zone; -uma_zone_t ipatm_nif_zone; /* * Local functions @@ -403,11 +402,6 @@ ipatm_start() if (ipatm_vc_zone == NULL) panic("ipatm_start: unable to create ipatm_vc_zone"); - ipatm_nif_zone = uma_zcreate("ipatm nif", sizeof(struct ip_nif), NULL, - NULL, NULL, NULL, UMA_ALIGN_PTR, 0); - if (ipatm_nif_zone == NULL) - panic("ipatm_start: unable to create ipatm_nif_zone"); - /* * Register ourselves as a network convergence module */ @@ -597,7 +591,6 @@ ipatm_stop() * Free up our storage pools */ uma_zdestroy(ipatm_vc_zone); - uma_zdestroy(ipatm_nif_zone); done: (void) splx(s); return (err); |
