diff options
Diffstat (limited to 'sys/netgraph/ng_lmi.c')
| -rw-r--r-- | sys/netgraph/ng_lmi.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netgraph/ng_lmi.c b/sys/netgraph/ng_lmi.c index 7a8ea4a9a0b9..4521d74444a2 100644 --- a/sys/netgraph/ng_lmi.c +++ b/sys/netgraph/ng_lmi.c @@ -329,9 +329,7 @@ nglmi_inquire(sc_p sc, int full) m->m_pkthdr.rcvif = NULL; /* Allocate a meta struct (and leave some slop for options to be * added by other modules). */ - /* MALLOC(meta, meta_p, sizeof( struct ng_meta) + META_PAD, - * M_NETGRAPH, M_NOWAIT); */ - MALLOC(meta, meta_p, sizeof(*meta) + META_PAD, M_NETGRAPH, M_NOWAIT); + MALLOC(meta, meta_p, sizeof(*meta) + META_PAD, M_NETGRAPH_META, M_NOWAIT); if (meta != NULL) { /* if it failed, well, it was optional anyhow */ meta->used_len = (u_short) sizeof(struct ng_meta); meta->allocated_len |
