Home
last modified time | relevance | path

Searched refs:thpsize (Results 1 – 1 of 1) sorted by relevance

/mm/
Dhuge_memory.c451 struct thpsize { struct
457 #define to_thpsize(kobj) container_of(kobj, struct thpsize, kobj) argument
577 static struct thpsize *thpsize_create(int order, struct kobject *parent) in thpsize_create()
580 struct thpsize *thpsize; in thpsize_create() local
583 thpsize = kzalloc(sizeof(*thpsize), GFP_KERNEL); in thpsize_create()
584 if (!thpsize) in thpsize_create()
587 ret = kobject_init_and_add(&thpsize->kobj, &thpsize_ktype, parent, in thpsize_create()
590 kfree(thpsize); in thpsize_create()
594 ret = sysfs_create_group(&thpsize->kobj, &thpsize_attr_group); in thpsize_create()
596 kobject_put(&thpsize->kobj); in thpsize_create()
[all …]