我正在开发一个涉及使用 rbtree.h 中定义的 rb_tree 的 Linux 内核项目。这是我存储在树中的结构:
struct source_store{
sector_t source;
sector_t cache;
struct rb_node * node;
}
为了从树中检索对象,我执行以下操作:
struct rb_node * parent = root->rb_node;
struct source_store * store = rb_entry(parent, struct source_store, node);
但是,在编译时,我收到此错误:
warning: initialization from incompatible pointer type
此外,当我从树中检索 struts 时,我存储在源和缓存字段中的数字是不同的。例如,我将数字 512 存储在源字段中,当我稍后检索结构时,它会是一个非常大的数字,例如 16810075660910329857。据我了解,sector_t 是一个 long long 无符号整数。为什么存储的数字会改变?为什么指针类型不兼容?