amd-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] drm/amdkfd: Make svm_migrate_put_sys_page static
@ 2021-04-30  9:09 Felix Kuehling
  2021-04-30 13:06 ` Rodrigo Siqueira
  2021-04-30 21:39 ` Zeng, Oak
  0 siblings, 2 replies; 3+ messages in thread
From: Felix Kuehling @ 2021-04-30  9:09 UTC (permalink / raw)
  To: amd-gfx; +Cc: kernel test robot

This function is only used in this source file.

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>
---
 drivers/gpu/drm/amd/amdkfd/kfd_migrate.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c b/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c
index 6b810863f6ba..bc2fc528ad58 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c
@@ -281,7 +281,7 @@ svm_migrate_get_sys_page(struct vm_area_struct *vma, unsigned long addr)
 	return page;
 }
 
-void svm_migrate_put_sys_page(unsigned long addr)
+static void svm_migrate_put_sys_page(unsigned long addr)
 {
 	struct page *page;
 
-- 
2.31.1

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/1] drm/amdkfd: Make svm_migrate_put_sys_page static
  2021-04-30  9:09 [PATCH 1/1] drm/amdkfd: Make svm_migrate_put_sys_page static Felix Kuehling
@ 2021-04-30 13:06 ` Rodrigo Siqueira
  2021-04-30 21:39 ` Zeng, Oak
  1 sibling, 0 replies; 3+ messages in thread
From: Rodrigo Siqueira @ 2021-04-30 13:06 UTC (permalink / raw)
  To: Felix Kuehling; +Cc: kernel test robot, amd-gfx


[-- Attachment #1.1: Type: text/plain, Size: 1511 bytes --]

Lgtm

Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>

On 04/30, Felix Kuehling wrote:
> This function is only used in this source file.
> 
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>
> ---
>  drivers/gpu/drm/amd/amdkfd/kfd_migrate.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c b/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c
> index 6b810863f6ba..bc2fc528ad58 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c
> @@ -281,7 +281,7 @@ svm_migrate_get_sys_page(struct vm_area_struct *vma, unsigned long addr)
>  	return page;
>  }
>  
> -void svm_migrate_put_sys_page(unsigned long addr)
> +static void svm_migrate_put_sys_page(unsigned long addr)
>  {
>  	struct page *page;
>  
> -- 
> 2.31.1
> 
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Famd-gfx&amp;data=04%7C01%7CRodrigo.Siqueira%40amd.com%7Cf8bfc52427f04e97f82708d90bb7c197%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637553706127947374%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=sOUEQXslNYh%2FYoiG2sXzBmmxoLHOMet0HOTJwdtx6y4%3D&amp;reserved=0

-- 
Rodrigo Siqueira
https://siqueira.tech

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/1] drm/amdkfd: Make svm_migrate_put_sys_page static
  2021-04-30  9:09 [PATCH 1/1] drm/amdkfd: Make svm_migrate_put_sys_page static Felix Kuehling
  2021-04-30 13:06 ` Rodrigo Siqueira
@ 2021-04-30 21:39 ` Zeng, Oak
  1 sibling, 0 replies; 3+ messages in thread
From: Zeng, Oak @ 2021-04-30 21:39 UTC (permalink / raw)
  To: Kuehling, Felix, amd-gfx; +Cc: kernel test robot

Reviewed-by: Oak Zeng <Oak.Zeng@amd.com>

Regards,
Oak 

 

On 2021-04-30, 5:10 AM, "amd-gfx on behalf of Felix Kuehling" <amd-gfx-bounces@lists.freedesktop.org on behalf of Felix.Kuehling@amd.com> wrote:

    This function is only used in this source file.

    Reported-by: kernel test robot <lkp@intel.com>
    Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>
    ---
     drivers/gpu/drm/amd/amdkfd/kfd_migrate.c | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c b/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c
    index 6b810863f6ba..bc2fc528ad58 100644
    --- a/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c
    +++ b/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c
    @@ -281,7 +281,7 @@ svm_migrate_get_sys_page(struct vm_area_struct *vma, unsigned long addr)
     	return page;
     }

    -void svm_migrate_put_sys_page(unsigned long addr)
    +static void svm_migrate_put_sys_page(unsigned long addr)
     {
     	struct page *page;

    -- 
    2.31.1

    _______________________________________________
    amd-gfx mailing list
    amd-gfx@lists.freedesktop.org
    https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Famd-gfx&amp;data=04%7C01%7Coak.zeng%40amd.com%7Cf2357cdb134c48e3295f08d90bb7c271%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637553706138144827%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=ZnGG2WzGJHvnEgwdwpwNci4%2FAhl4hwXT%2BIwUJGArK6U%3D&amp;reserved=0

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-04-30 21:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-30  9:09 [PATCH 1/1] drm/amdkfd: Make svm_migrate_put_sys_page static Felix Kuehling
2021-04-30 13:06 ` Rodrigo Siqueira
2021-04-30 21:39 ` Zeng, Oak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).