On Tue, 6 Aug 2019 01:15:01 +0800 Mikhail Gavrilov wrote: > > Unfortunately couldn't check this patch because, with the patch, the > kernel did not compile. > Here is compile error messages: > > drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c: In function > 'dc_create_state': > drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:1178:13: error: > implicit declaration of function 'kvzalloc'; did you mean 'kzalloc'? > [-Werror=implicit-function-declaration] > 1178 | context = kvzalloc(sizeof(struct dc_state), > | ^~~~~~~~ > | kzalloc > drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:1178:11: warning: > assignment to 'struct dc_state *' from 'int' makes pointer from > integer without a cast [-Wint-conversion] > 1178 | context = kvzalloc(sizeof(struct dc_state), > | ^ > drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c: In function 'dc_copy_state': > drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:1203:13: error: > implicit declaration of function 'kvmalloc'; did you mean 'kmalloc'? > [-Werror=implicit-function-declaration] > 1203 | new_ctx = kvmalloc(sizeof(*new_ctx), GFP_KERNEL); > | ^~~~~~~~ > | kmalloc > drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:1203:11: warning: > assignment to 'struct dc_state *' from 'int' makes pointer from > integer without a cast [-Wint-conversion] > 1203 | new_ctx = kvmalloc(sizeof(*new_ctx), GFP_KERNEL); > | ^ > drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c: In function 'dc_state_free': > drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:1242:2: error: > implicit declaration of function 'kvfree'; did you mean 'kzfree'? > [-Werror=implicit-function-declaration] > 1242 | kvfree(context); > | ^~~~~~ > | kzfree > cc1: some warnings being treated as errors > make[4]: *** [scripts/Makefile.build:274: > drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.o] Error 1 > make[4]: *** Waiting for unfinished jobs.... > make[3]: *** [scripts/Makefile.build:490: drivers/gpu/drm/amd/amdgpu] Error 2 > make[3]: *** Waiting for unfinished jobs.... > make: *** [Makefile:1084: drivers] Error 2 My bad, respin with one header file added. Hillf -----8<--- --- a/drivers/gpu/drm/amd/display/dc/core/dc.c +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c @@ -23,6 +23,7 @@ */ #include <linux/slab.h> +#include <linux/mm.h> #include "dm_services.h" @@ -1174,8 +1175,12 @@ struct dc_state *dc_create_state(struct struct dc_state *context = kzalloc(sizeof(struct dc_state), GFP_KERNEL); - if (!context) - return NULL; + if (!context) { + context = kvzalloc(sizeof(struct dc_state), + GFP_KERNEL); + if (!context) + return NULL; + } /* Each context must have their own instance of VBA and in order to * initialize and obtain IP and SOC the base DML instance from DC is * initially copied into every context @@ -1195,8 +1200,13 @@ struct dc_state *dc_copy_state(struct dc struct dc_state *new_ctx = kmemdup(src_ctx, sizeof(struct dc_state), GFP_KERNEL); - if (!new_ctx) - return NULL; + if (!new_ctx) { + new_ctx = kvmalloc(sizeof(*new_ctx), GFP_KERNEL); + if (new_ctx) + *new_ctx = *src_ctx; + else + return NULL; + } for (i = 0; i < MAX_PIPES; i++) { struct pipe_ctx *cur_pipe = &new_ctx->res_ctx.pipe_ctx[i]; @@ -1230,7 +1240,7 @@ static void dc_state_free(struct kref *k { struct dc_state *context = container_of(kref, struct dc_state, refcount); dc_resource_state_destruct(context); - kfree(context); + kvfree(context); } void dc_release_state(struct dc_state *context) --