public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] accel/amdxdna: Add missing include linux/slab.h
@ 2025-02-11  1:53 Su Hui
  2025-02-11  8:47 ` Jacek Lawrynowicz
  2025-02-11 15:36 ` Jeffrey Hugo
  0 siblings, 2 replies; 4+ messages in thread
From: Su Hui @ 2025-02-11  1:53 UTC (permalink / raw)
  To: jacek.lawrynowicz, min.ma, lizhi.hou, ogabbay
  Cc: Su Hui, quic_jhugo, George.Yang, dri-devel, linux-kernel,
	kernel-janitors

When compiling without CONFIG_IA32_EMULATION, there can be some errors:

drivers/accel/amdxdna/amdxdna_mailbox.c: In function ‘mailbox_release_msg’:
drivers/accel/amdxdna/amdxdna_mailbox.c:197:2: error: implicit declaration
of function ‘kfree’.
  197 |  kfree(mb_msg);
      |  ^~~~~
drivers/accel/amdxdna/amdxdna_mailbox.c: In function ‘xdna_mailbox_send_msg’:
drivers/accel/amdxdna/amdxdna_mailbox.c:418:11: error:implicit declaration
of function ‘kzalloc’.
  418 |  mb_msg = kzalloc(sizeof(*mb_msg) + pkg_size, GFP_KERNEL);
      |           ^~~~~~~

Add the missing include.

Fixes: b87f920b9344 ("accel/amdxdna: Support hardware mailbox")
Signed-off-by: Su Hui <suhui@nfschina.com>
Reviewed-by: Lizhi Hou <lizhi.hou@amd.com>
---
v2:
 - move the header to the include block above and keep it sorted(Jacek Lawrynowicz).

 drivers/accel/amdxdna/amdxdna_mailbox.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/accel/amdxdna/amdxdna_mailbox.c b/drivers/accel/amdxdna/amdxdna_mailbox.c
index 814b16bb1953..e5301fac1397 100644
--- a/drivers/accel/amdxdna/amdxdna_mailbox.c
+++ b/drivers/accel/amdxdna/amdxdna_mailbox.c
@@ -8,6 +8,7 @@
 #include <linux/bitfield.h>
 #include <linux/interrupt.h>
 #include <linux/iopoll.h>
+#include <linux/slab.h>
 #include <linux/xarray.h>
 
 #define CREATE_TRACE_POINTS
-- 
2.30.2


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

* Re: [PATCH v2] accel/amdxdna: Add missing include linux/slab.h
  2025-02-11  1:53 [PATCH v2] accel/amdxdna: Add missing include linux/slab.h Su Hui
@ 2025-02-11  8:47 ` Jacek Lawrynowicz
  2025-02-11 15:36 ` Jeffrey Hugo
  1 sibling, 0 replies; 4+ messages in thread
From: Jacek Lawrynowicz @ 2025-02-11  8:47 UTC (permalink / raw)
  To: Su Hui, min.ma, lizhi.hou, ogabbay
  Cc: quic_jhugo, George.Yang, dri-devel, linux-kernel, kernel-janitors

Reviewed-by: Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com>

On 2/11/2025 2:53 AM, Su Hui wrote:
> When compiling without CONFIG_IA32_EMULATION, there can be some errors:
> 
> drivers/accel/amdxdna/amdxdna_mailbox.c: In function ‘mailbox_release_msg’:
> drivers/accel/amdxdna/amdxdna_mailbox.c:197:2: error: implicit declaration
> of function ‘kfree’.
>   197 |  kfree(mb_msg);
>       |  ^~~~~
> drivers/accel/amdxdna/amdxdna_mailbox.c: In function ‘xdna_mailbox_send_msg’:
> drivers/accel/amdxdna/amdxdna_mailbox.c:418:11: error:implicit declaration
> of function ‘kzalloc’.
>   418 |  mb_msg = kzalloc(sizeof(*mb_msg) + pkg_size, GFP_KERNEL);
>       |           ^~~~~~~
> 
> Add the missing include.
> 
> Fixes: b87f920b9344 ("accel/amdxdna: Support hardware mailbox")
> Signed-off-by: Su Hui <suhui@nfschina.com>
> Reviewed-by: Lizhi Hou <lizhi.hou@amd.com>
> ---
> v2:
>  - move the header to the include block above and keep it sorted(Jacek Lawrynowicz).
> 
>  drivers/accel/amdxdna/amdxdna_mailbox.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/accel/amdxdna/amdxdna_mailbox.c b/drivers/accel/amdxdna/amdxdna_mailbox.c
> index 814b16bb1953..e5301fac1397 100644
> --- a/drivers/accel/amdxdna/amdxdna_mailbox.c
> +++ b/drivers/accel/amdxdna/amdxdna_mailbox.c
> @@ -8,6 +8,7 @@
>  #include <linux/bitfield.h>
>  #include <linux/interrupt.h>
>  #include <linux/iopoll.h>
> +#include <linux/slab.h>
>  #include <linux/xarray.h>
>  
>  #define CREATE_TRACE_POINTS


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

* Re: [PATCH v2] accel/amdxdna: Add missing include linux/slab.h
  2025-02-11  1:53 [PATCH v2] accel/amdxdna: Add missing include linux/slab.h Su Hui
  2025-02-11  8:47 ` Jacek Lawrynowicz
@ 2025-02-11 15:36 ` Jeffrey Hugo
  2025-02-19 18:47   ` Lizhi Hou
  1 sibling, 1 reply; 4+ messages in thread
From: Jeffrey Hugo @ 2025-02-11 15:36 UTC (permalink / raw)
  To: Su Hui, jacek.lawrynowicz, min.ma, lizhi.hou, ogabbay
  Cc: George.Yang, dri-devel, linux-kernel, kernel-janitors

On 2/10/2025 6:53 PM, Su Hui wrote:
> When compiling without CONFIG_IA32_EMULATION, there can be some errors:
> 
> drivers/accel/amdxdna/amdxdna_mailbox.c: In function ‘mailbox_release_msg’:
> drivers/accel/amdxdna/amdxdna_mailbox.c:197:2: error: implicit declaration
> of function ‘kfree’.
>    197 |  kfree(mb_msg);
>        |  ^~~~~
> drivers/accel/amdxdna/amdxdna_mailbox.c: In function ‘xdna_mailbox_send_msg’:
> drivers/accel/amdxdna/amdxdna_mailbox.c:418:11: error:implicit declaration
> of function ‘kzalloc’.
>    418 |  mb_msg = kzalloc(sizeof(*mb_msg) + pkg_size, GFP_KERNEL);
>        |           ^~~~~~~
> 
> Add the missing include.
> 
> Fixes: b87f920b9344 ("accel/amdxdna: Support hardware mailbox")
> Signed-off-by: Su Hui <suhui@nfschina.com>
> Reviewed-by: Lizhi Hou <lizhi.hou@amd.com>

Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com>

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

* Re: [PATCH v2] accel/amdxdna: Add missing include linux/slab.h
  2025-02-11 15:36 ` Jeffrey Hugo
@ 2025-02-19 18:47   ` Lizhi Hou
  0 siblings, 0 replies; 4+ messages in thread
From: Lizhi Hou @ 2025-02-19 18:47 UTC (permalink / raw)
  To: Jeffrey Hugo, Su Hui, jacek.lawrynowicz, min.ma, ogabbay
  Cc: George.Yang, dri-devel, linux-kernel, kernel-janitors


On 2/11/25 07:36, Jeffrey Hugo wrote:
> On 2/10/2025 6:53 PM, Su Hui wrote:
>> When compiling without CONFIG_IA32_EMULATION, there can be some errors:
>>
>> drivers/accel/amdxdna/amdxdna_mailbox.c: In function 
>> ‘mailbox_release_msg’:
>> drivers/accel/amdxdna/amdxdna_mailbox.c:197:2: error: implicit 
>> declaration
>> of function ‘kfree’.
>>    197 |  kfree(mb_msg);
>>        |  ^~~~~
>> drivers/accel/amdxdna/amdxdna_mailbox.c: In function 
>> ‘xdna_mailbox_send_msg’:
>> drivers/accel/amdxdna/amdxdna_mailbox.c:418:11: error:implicit 
>> declaration
>> of function ‘kzalloc’.
>>    418 |  mb_msg = kzalloc(sizeof(*mb_msg) + pkg_size, GFP_KERNEL);
>>        |           ^~~~~~~
>>
>> Add the missing include.
>>
>> Fixes: b87f920b9344 ("accel/amdxdna: Support hardware mailbox")
>> Signed-off-by: Su Hui <suhui@nfschina.com>
>> Reviewed-by: Lizhi Hou <lizhi.hou@amd.com>
>
> Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com>

Pushed to drm-misc-fixes


Thanks,

Lizhi


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

end of thread, other threads:[~2025-02-19 18:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-11  1:53 [PATCH v2] accel/amdxdna: Add missing include linux/slab.h Su Hui
2025-02-11  8:47 ` Jacek Lawrynowicz
2025-02-11 15:36 ` Jeffrey Hugo
2025-02-19 18:47   ` Lizhi Hou

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox