On Mon, May 29, 2023 at 10:56 AM Srinivasan Shanmugam <srinivasan.shanmugam@xxxxxxx> wrote: > > Fix these warnings by adding 'xcp_id' argument. > > gcc with W=1 > drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c:160: warning: Function parameter or member 'xcp_id' not described in 'amdgpu_amdkfd_reserve_mem_limit' > > Cc: Christian König <christian.koenig@xxxxxxx> > Cc: Alex Deucher <alexander.deucher@xxxxxxx> > Signed-off-by: Srinivasan Shanmugam <srinivasan.shanmugam@xxxxxxx> Acked-by: Alex Deucher <alexander.deucher@xxxxxxx> > --- > drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c > index fa4057da0d7f..cd5d7a39ad0c 100644 > --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c > +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c > @@ -152,8 +152,11 @@ void amdgpu_amdkfd_reserve_system_mem(uint64_t size) > * @size: Size of buffer, in bytes, encapsulated by B0. This should be > * equivalent to amdgpu_bo_size(BO) > * @alloc_flag: Flag used in allocating a BO as noted above > + * @xcp_id: xcp_id is used to get xcp from xcp manager, one xcp is > + * managed as one compute node in driver for app > * > - * Return: returns -ENOMEM in case of error, ZERO otherwise > + * Return: > + * returns -ENOMEM in case of error, ZERO otherwise > */ > int amdgpu_amdkfd_reserve_mem_limit(struct amdgpu_device *adev, > uint64_t size, u32 alloc_flag, int8_t xcp_id) > -- > 2.25.1 >