drm/ttm: Fixes for "Memory accounting rework."
ttm: Fix error paths when kobject_add returns an error. Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
7f5f4db2d5
commit
759e4f83f4
@ -244,6 +244,7 @@ static int ttm_mem_init_kernel_zone(struct ttm_mem_global *glob,
|
|||||||
{
|
{
|
||||||
struct ttm_mem_zone *zone = kzalloc(sizeof(*zone), GFP_KERNEL);
|
struct ttm_mem_zone *zone = kzalloc(sizeof(*zone), GFP_KERNEL);
|
||||||
uint64_t mem;
|
uint64_t mem;
|
||||||
|
int ret;
|
||||||
|
|
||||||
if (unlikely(!zone))
|
if (unlikely(!zone))
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
@ -259,9 +260,14 @@ static int ttm_mem_init_kernel_zone(struct ttm_mem_global *glob,
|
|||||||
zone->used_mem = 0;
|
zone->used_mem = 0;
|
||||||
zone->glob = glob;
|
zone->glob = glob;
|
||||||
glob->zone_kernel = zone;
|
glob->zone_kernel = zone;
|
||||||
glob->zones[glob->num_zones++] = zone;
|
|
||||||
kobject_init(&zone->kobj, &ttm_mem_zone_kobj_type);
|
kobject_init(&zone->kobj, &ttm_mem_zone_kobj_type);
|
||||||
return kobject_add(&zone->kobj, &glob->kobj, zone->name);
|
ret = kobject_add(&zone->kobj, &glob->kobj, zone->name);
|
||||||
|
if (unlikely(ret != 0)) {
|
||||||
|
kobject_put(&zone->kobj);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
glob->zones[glob->num_zones++] = zone;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_HIGHMEM
|
#ifdef CONFIG_HIGHMEM
|
||||||
@ -270,6 +276,7 @@ static int ttm_mem_init_highmem_zone(struct ttm_mem_global *glob,
|
|||||||
{
|
{
|
||||||
struct ttm_mem_zone *zone = kzalloc(sizeof(*zone), GFP_KERNEL);
|
struct ttm_mem_zone *zone = kzalloc(sizeof(*zone), GFP_KERNEL);
|
||||||
uint64_t mem;
|
uint64_t mem;
|
||||||
|
int ret;
|
||||||
|
|
||||||
if (unlikely(!zone))
|
if (unlikely(!zone))
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
@ -288,9 +295,14 @@ static int ttm_mem_init_highmem_zone(struct ttm_mem_global *glob,
|
|||||||
zone->used_mem = 0;
|
zone->used_mem = 0;
|
||||||
zone->glob = glob;
|
zone->glob = glob;
|
||||||
glob->zone_highmem = zone;
|
glob->zone_highmem = zone;
|
||||||
glob->zones[glob->num_zones++] = zone;
|
|
||||||
kobject_init(&zone->kobj, &ttm_mem_zone_kobj_type);
|
kobject_init(&zone->kobj, &ttm_mem_zone_kobj_type);
|
||||||
return kobject_add(&zone->kobj, &glob->kobj, zone->name);
|
ret = kobject_add(&zone->kobj, &glob->kobj, zone->name);
|
||||||
|
if (unlikely(ret != 0)) {
|
||||||
|
kobject_put(&zone->kobj);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
glob->zones[glob->num_zones++] = zone;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
static int ttm_mem_init_dma32_zone(struct ttm_mem_global *glob,
|
static int ttm_mem_init_dma32_zone(struct ttm_mem_global *glob,
|
||||||
@ -298,6 +310,7 @@ static int ttm_mem_init_dma32_zone(struct ttm_mem_global *glob,
|
|||||||
{
|
{
|
||||||
struct ttm_mem_zone *zone = kzalloc(sizeof(*zone), GFP_KERNEL);
|
struct ttm_mem_zone *zone = kzalloc(sizeof(*zone), GFP_KERNEL);
|
||||||
uint64_t mem;
|
uint64_t mem;
|
||||||
|
int ret;
|
||||||
|
|
||||||
if (unlikely(!zone))
|
if (unlikely(!zone))
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
@ -327,9 +340,14 @@ static int ttm_mem_init_dma32_zone(struct ttm_mem_global *glob,
|
|||||||
zone->used_mem = 0;
|
zone->used_mem = 0;
|
||||||
zone->glob = glob;
|
zone->glob = glob;
|
||||||
glob->zone_dma32 = zone;
|
glob->zone_dma32 = zone;
|
||||||
glob->zones[glob->num_zones++] = zone;
|
|
||||||
kobject_init(&zone->kobj, &ttm_mem_zone_kobj_type);
|
kobject_init(&zone->kobj, &ttm_mem_zone_kobj_type);
|
||||||
return kobject_add(&zone->kobj, &glob->kobj, zone->name);
|
ret = kobject_add(&zone->kobj, &glob->kobj, zone->name);
|
||||||
|
if (unlikely(ret != 0)) {
|
||||||
|
kobject_put(&zone->kobj);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
glob->zones[glob->num_zones++] = zone;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -348,8 +366,10 @@ int ttm_mem_global_init(struct ttm_mem_global *glob)
|
|||||||
ret = kobject_add(&glob->kobj,
|
ret = kobject_add(&glob->kobj,
|
||||||
ttm_get_kobj(),
|
ttm_get_kobj(),
|
||||||
"memory_accounting");
|
"memory_accounting");
|
||||||
if (unlikely(ret != 0))
|
if (unlikely(ret != 0)) {
|
||||||
goto out_no_zone;
|
kobject_put(&glob->kobj);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
si_meminfo(&si);
|
si_meminfo(&si);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user