On Thu, Jul 25, 2024 at 6:06 PM Lizhi Hou <lizhi.hou@xxxxxxx> wrote: > > Hi Amit, > > > I try to follow the option which add a OF flag. If Rob is ok with this, > I would suggest to use it instead of V1 patch > > diff --git a/drivers/of/dynamic.c b/drivers/of/dynamic.c > index dda6092e6d3a..a401ed0463d9 100644 > --- a/drivers/of/dynamic.c > +++ b/drivers/of/dynamic.c > @@ -382,6 +382,11 @@ void of_node_release(struct kobject *kobj) > __func__, node); > } > > + if (of_node_check_flag(node, OF_CREATED_WITH_CSET)) { > + of_changeset_revert(node->data); > + of_changeset_destroy(node->data); > + } What happens if multiple nodes are created in the changeset? > + > if (node->child) > pr_err("ERROR: %s() unexpected children for %pOF/%s\n", > __func__, node->parent, node->full_name); > @@ -507,6 +512,7 @@ struct device_node *of_changeset_create_node(struct > of_changeset *ocs, > np = __of_node_dup(NULL, full_name); > if (!np) > return NULL; > + of_node_set_flag(np, OF_CREATED_WITH_CSET); This should be set where the data ptr is set. Rob