MCPcopy Create free account
hub / github.com/F-Stack/f-stack / stats_voi_update_abs_u64

Function stats_voi_update_abs_u64

freebsd/sys/stats.h:1054–1066  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1052}
1053
1054static inline int
1055stats_voi_update_abs_u64(struct statsblob *sb, int32_t voi_id, uint64_t voival)
1056{
1057
1058 if (sb == NULL)
1059 return (0);
1060
1061 struct voistatdata tmp;
1062 tmp.int64.u64 = voival;
1063
1064 return (stats_v1_voi_update((struct statsblobv1 *)sb, voi_id,
1065 VSD_DTYPE_INT_U64, &tmp, 0));
1066}
1067
1068static inline int
1069stats_voi_update_rel_u64(struct statsblob *sb, int32_t voi_id, uint64_t voival)

Callers 3

tcp_output.cFile · 0.85
rack.cFile · 0.85
bbr_do_send_accountingFunction · 0.85

Calls 1

stats_v1_voi_updateFunction · 0.85

Tested by

no test coverage detected