Agreed. How about this for the warning part?
+
+/*
+ * note: kobj_type should provide a release function to free dynamically
+ * allocated object since kobject is responsible for controlling lifespan
+ * of the object. However, cma_area is static object so technially, it
+ * doesn't need release function. It's very exceptional case so pleaes
+ * do not follow this model.
+ */
static struct kobj_type cma_ktype = {
.sysfs_ops = &kobj_sysfs_ops,
.default_groups = cma_groups
+ .release = NULL, /* do not follow. See above */
};
No, please no. Just do it the correct way, what is the objection to
creating a few dynamic kobjects from the heap? How many of these are
you going to have that it will somehow be "wasteful"?
Please do it properly.
Oh, I misunderstood your word "don't provide a release function for the
kobject" so thought you agreed on John. If you didn't, we are stuck again:
IIUC, the objection from John was the cma_stat lifetime should be on parent
object, which is reasonable and make code simple.
Frankly speaking, I don't have strong opinion about either approach.
John?