diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2023-03-03 16:20:29 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2023-03-06 18:20:46 +0000 |
commit | 85aac7cc92f59ad023d40c81826b5c4f829dba15 (patch) | |
tree | 4ff54758930c43f0af6cd49170fc12491e6c30c4 /sys/netgraph | |
parent | 08a5f8c5cbc7143601a34ac7e52831e996a9347e (diff) |
ng_atmllc: deprecate
With the deprecation of NgATM, ng_atmllc is the last vestage of ATM
support so deprecate it too.
Reviewed by: manu, emaste
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D38878
(cherry picked from commit c2285a7b092f524b5694e42bfb5fd24f71815771)
Diffstat (limited to 'sys/netgraph')
-rw-r--r-- | sys/netgraph/ng_atmllc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/netgraph/ng_atmllc.c b/sys/netgraph/ng_atmllc.c index 1e4475ae68e0..d4a13fb83128 100644 --- a/sys/netgraph/ng_atmllc.c +++ b/sys/netgraph/ng_atmllc.c @@ -93,6 +93,8 @@ ng_atmllc_constructor(node_p node) { struct ng_atmllc_priv *priv; + gone_in(14, "ng_atmllc"); + priv = malloc(sizeof(*priv), M_NETGRAPH, M_WAITOK | M_ZERO); NG_NODE_SET_PRIVATE(node, priv); |