Searched refs:ndpr (Results 1 – 3 of 3) sorted by relevance
3005 ndpr_addref(struct nd_prefix *ndpr) in ndpr_addref() argument3007 NDPR_REF_LOCK_SPIN(ndpr); in ndpr_addref()3008 if (++ndpr->ndpr_refcount == 0) { in ndpr_addref()3009 panic("%s: ndpr %p wraparound refcnt", __func__, ndpr); in ndpr_addref()3011 } else if (ndpr->ndpr_trace != NULL) { in ndpr_addref()3012 (*ndpr->ndpr_trace)(ndpr, TRUE); in ndpr_addref()3014 NDPR_REF_UNLOCK(ndpr); in ndpr_addref()3018 ndpr_remref(struct nd_prefix *ndpr) in ndpr_remref() argument3020 NDPR_REF_LOCK_SPIN(ndpr); in ndpr_remref()3021 if (ndpr->ndpr_refcount == 0) { in ndpr_remref()[all …]
981 extern int in6_init_prefix_ltimes(struct nd_prefix *ndpr);
1262 ndpr = kern.GetValueFromAddress(cmd_args[0], 'nd_prefix_dbg *')1264 out_string += ndpr_summary_format_string.format("Total holds : ", ndpr.ndpr_refhold_cnt)1265 out_string += ndpr_summary_format_string.format("Total releases : ", ndpr.ndpr_refrele_cnt)1270 kgm_pc = ndpr.ndpr_refhold[cnt].pc[ix]1273 … out_string += "\nHold [" + str(int(cnt)) + "] (thread " + hex(ndpr.ndpr_refhold[cnt].th) + "):\n"1283 kgm_pc = ndpr.ndpr_refrele[cnt].pc[ix]1286 …out_string += "\nRelease [" + str(int(cnt)) + "] (thread " + hex(ndpr.ndpr_refrele[cnt].th) + "):\…