In android binder code there are call to Kernel BUG function. For example in function binder_get_ref_for_node when it is not able to find a appropriate place to insert a node in RB Tree `while (*p) {
parent = *p;
ref = rb_entry(parent, struct binder_ref, rb_node_desc);
if (new_ref->desc < ref->desc)
p = &(*p)->rb_left;
else if (new_ref->desc > ref->desc)
p = &(*p)->rb_right;
else
BUG();
}`
It calls BUG() function. What is the significance of this BUG() function call? In practical scenario when this can happen.
Thanks