diff options
| author | Dan McDonald <danmcd@joyent.com> | 2019-02-22 14:42:52 -0500 |
|---|---|---|
| committer | Dan McDonald <danmcd@joyent.com> | 2019-03-02 16:02:09 -0500 |
| commit | 42c5ef032d8316897a2ba9f9ebf4b9c2654ec345 (patch) | |
| tree | 24a8b1fe715d034e5aadb9cc7f9b850230300df4 /usr/src/uts/common/inet/ip/ip.c | |
| parent | 573f5931ffa70de78fc2317b82e36d6344cf6c3c (diff) | |
| download | illumos-joyent-42c5ef032d8316897a2ba9f9ebf4b9c2654ec345.tar.gz | |
10472 Limit number of multicast NCEs
Reviewed by: Cody Peter Mello <melloc@writev.io>
Reviewed by: Jason King <jason.king@joyent.com>
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Richard Lowe <richlowe@richlowe.net>
Approved by: Joshua M. Clulow <josh@sysmgr.org>
Diffstat (limited to 'usr/src/uts/common/inet/ip/ip.c')
| -rw-r--r-- | usr/src/uts/common/inet/ip/ip.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr/src/uts/common/inet/ip/ip.c b/usr/src/uts/common/inet/ip/ip.c index 18f67573be..46272b2b22 100644 --- a/usr/src/uts/common/inet/ip/ip.c +++ b/usr/src/uts/common/inet/ip/ip.c @@ -24,7 +24,7 @@ * Copyright (c) 1990 Mentat Inc. * Copyright (c) 2017 OmniTI Computer Consulting, Inc. All rights reserved. * Copyright (c) 2016 by Delphix. All rights reserved. - * Copyright (c) 2018 Joyent, Inc. All rights reserved. + * Copyright (c) 2019 Joyent, Inc. All rights reserved. */ #include <sys/types.h> @@ -13937,6 +13937,9 @@ ip_kstat2_init(netstackid_t stackid, ip_stat_t *ip_statisticsp) { "ip_ire_reclaim_deleted", KSTAT_DATA_UINT64 }, { "ip_nce_reclaim_calls", KSTAT_DATA_UINT64 }, { "ip_nce_reclaim_deleted", KSTAT_DATA_UINT64 }, + { "ip_nce_mcast_reclaim_calls", KSTAT_DATA_UINT64 }, + { "ip_nce_mcast_reclaim_deleted", KSTAT_DATA_UINT64 }, + { "ip_nce_mcast_reclaim_tqfail", KSTAT_DATA_UINT64 }, { "ip_dce_reclaim_calls", KSTAT_DATA_UINT64 }, { "ip_dce_reclaim_deleted", KSTAT_DATA_UINT64 }, { "ip_tcp_in_full_hw_cksum_err", KSTAT_DATA_UINT64 }, |
