Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 net/include/dst.h 中,标志 DST_METRICS_READ_ONLY 设置在 struct dst 的 _metric 成员上。但我不希望该结构是只读的。如何禁用该标志。
提前致谢
*dst->_metrics* 设置为 *DST_METRICS_READ_ONLY* 仅当函数 *dst_init_metrics()* 被调用且其参数 read_only 设置为 true 时。因此,如果您想确保不启用此只读标志,请修补您的内核以在任何调用 dst_init_metrics 的地方使用 false。