* [PATCH] virtio_console: allocate the port_buffer with the caller's gfp
@ 2026-08-10 16:40 Breno Leitao
2026-08-18 9:06 ` Breno Leitao
2026-08-19 11:36 ` Sungho Bae
0 siblings, 2 replies; 5+ messages in thread
From: Breno Leitao @ 2026-08-10 16:40 UTC (permalink / raw)
To: Amit Shah, Arnd Bergmann, Greg Kroah-Hartman, Sungho Bae
Cc: virtualization, linux-kernel, kernel-team, Breno Leitao
put_chars() runs from the hvc console write path with preemption
disabled, so it asks alloc_buf() for GFP_ATOMIC. Only the data buffer
gets it: the struct port_buffer itself keeps the GFP_KERNEL default, so
the allocation can enter direct reclaim and sleep. A write to /dev/kmsg
on a CONFIG_DEBUG_ATOMIC_SLEEP kernel splats:
BUG: sleeping function called from invalid context at ./include/linux/sched/mm.h:320
in_atomic(): 1, irqs_disabled(): 1, non_block: 0, pid: 1, name: virtme-ng-init
preempt_count: 1, expected: 0
Preemption disabled at:
[<ffffffff813fd90d>] vprintk_emit+0x17d/0x510
Call Trace:
<TASK>
dump_stack_lvl+0x69/0xa0
__might_resched+0x37a/0x4d0
__kmalloc_cache_noprof+0x94/0x5f0
put_chars+0x209/0x3e0
hvc_console_print+0x234/0x640
console_flush_all+0x4fc/0x950
console_unlock+0xbf/0x1b0
vprintk_emit+0x312/0x510
devkmsg_emit+0xba/0x110
devkmsg_write+0x21b/0x2e0
vfs_write+0x4dc/0x9d0
ksys_write+0x108/0x1e0
do_syscall_64+0xfa/0x460
</TASK>
Pass gfp on to that allocation too.
Fixes: fc220d6be3c7 ("virtio_console: refactor __send_to_port() buffer ownership")
Signed-off-by: Breno Leitao <leitao@debian.org>
---
drivers/char/virtio_console.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
index 62eecfa61646d..7f6cbe851d1e1 100644
--- a/drivers/char/virtio_console.c
+++ b/drivers/char/virtio_console.c
@@ -426,7 +426,7 @@ static struct port_buffer *alloc_buf(struct virtio_device *vdev, size_t buf_size
* Allocate buffer and the sg list. The sg list array is allocated
* directly after the port_buffer struct.
*/
- buf = kmalloc_flex(*buf, sg, pages);
+ buf = kmalloc_flex(*buf, sg, pages, gfp);
if (!buf)
goto fail;
---
base-commit: 6b8c8af514d739d0335f5579b585e02babe8a727
change-id: 20260810-serial-d9b259ec9100
Best regards,
--
Breno Leitao <leitao@debian.org>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] virtio_console: allocate the port_buffer with the caller's gfp
2026-08-10 16:40 [PATCH] virtio_console: allocate the port_buffer with the caller's gfp Breno Leitao
@ 2026-08-18 9:06 ` Breno Leitao
2026-08-19 2:39 ` Sungho Bae
2026-08-19 11:36 ` Sungho Bae
1 sibling, 1 reply; 5+ messages in thread
From: Breno Leitao @ 2026-08-18 9:06 UTC (permalink / raw)
To: Amit Shah, Arnd Bergmann, Greg Kroah-Hartman, Sungho Bae
Cc: virtualization, linux-kernel, kernel-team
On Mon, Aug 10, 2026 at 09:40:00AM -0700, Breno Leitao wrote:
> put_chars() runs from the hvc console write path with preemption
> disabled, so it asks alloc_buf() for GFP_ATOMIC. Only the data buffer
> gets it: the struct port_buffer itself keeps the GFP_KERNEL default, so
> the allocation can enter direct reclaim and sleep. A write to /dev/kmsg
> on a CONFIG_DEBUG_ATOMIC_SLEEP kernel splats:
>
> BUG: sleeping function called from invalid context at ./include/linux/sched/mm.h:320
> in_atomic(): 1, irqs_disabled(): 1, non_block: 0, pid: 1, name: virtme-ng-init
> preempt_count: 1, expected: 0
> Preemption disabled at:
> [<ffffffff813fd90d>] vprintk_emit+0x17d/0x510
> Call Trace:
> <TASK>
> dump_stack_lvl+0x69/0xa0
> __might_resched+0x37a/0x4d0
> __kmalloc_cache_noprof+0x94/0x5f0
> put_chars+0x209/0x3e0
> hvc_console_print+0x234/0x640
> console_flush_all+0x4fc/0x950
> console_unlock+0xbf/0x1b0
> vprintk_emit+0x312/0x510
> devkmsg_emit+0xba/0x110
> devkmsg_write+0x21b/0x2e0
> vfs_write+0x4dc/0x9d0
> ksys_write+0x108/0x1e0
> do_syscall_64+0xfa/0x460
> </TASK>
>
> Pass gfp on to that allocation too.
>
> Fixes: fc220d6be3c7 ("virtio_console: refactor __send_to_port() buffer ownership")
> Signed-off-by: Breno Leitao <leitao@debian.org>
Ping?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] virtio_console: allocate the port_buffer with the caller's gfp
2026-08-18 9:06 ` Breno Leitao
@ 2026-08-19 2:39 ` Sungho Bae
2026-08-19 8:20 ` Breno Leitao
0 siblings, 1 reply; 5+ messages in thread
From: Sungho Bae @ 2026-08-19 2:39 UTC (permalink / raw)
To: Breno Leitao, Amit Shah, Arnd Bergmann, Greg Kroah-Hartman,
Sungho Bae
Cc: virtualization, linux-kernel, kernel-team
I am sorry for the late reply.
I fully agree with your patch.
It was my mistake. I should have to allocate the buffer with gfp flags.
Thank you for the corrections.
On 2026년 8월 18일 오후 6시 6분 37초 GMT+09:00, Breno Leitao <leitao@debian.org> 작성함:
>On Mon, Aug 10, 2026 at 09:40:00AM -0700, Breno Leitao wrote:
>> put_chars() runs from the hvc console write path with preemption
>> disabled, so it asks alloc_buf() for GFP_ATOMIC. Only the data buffer
>> gets it: the struct port_buffer itself keeps the GFP_KERNEL default, so
>> the allocation can enter direct reclaim and sleep. A write to /dev/kmsg
>> on a CONFIG_DEBUG_ATOMIC_SLEEP kernel splats:
>>
>> BUG: sleeping function called from invalid context at ./include/linux/sched/mm.h:320
>> in_atomic(): 1, irqs_disabled(): 1, non_block: 0, pid: 1, name: virtme-ng-init
>> preempt_count: 1, expected: 0
>> Preemption disabled at:
>> [<ffffffff813fd90d>] vprintk_emit+0x17d/0x510
>> Call Trace:
>> <TASK>
>> dump_stack_lvl+0x69/0xa0
>> __might_resched+0x37a/0x4d0
>> __kmalloc_cache_noprof+0x94/0x5f0
>> put_chars+0x209/0x3e0
>> hvc_console_print+0x234/0x640
>> console_flush_all+0x4fc/0x950
>> console_unlock+0xbf/0x1b0
>> vprintk_emit+0x312/0x510
>> devkmsg_emit+0xba/0x110
>> devkmsg_write+0x21b/0x2e0
>> vfs_write+0x4dc/0x9d0
>> ksys_write+0x108/0x1e0
>> do_syscall_64+0xfa/0x460
>> </TASK>
>>
>> Pass gfp on to that allocation too.
>>
>> Fixes: fc220d6be3c7 ("virtio_console: refactor __send_to_port() buffer ownership")
>> Signed-off-by: Breno Leitao <leitao@debian.org>
>
>Ping?
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] virtio_console: allocate the port_buffer with the caller's gfp
2026-08-19 2:39 ` Sungho Bae
@ 2026-08-19 8:20 ` Breno Leitao
0 siblings, 0 replies; 5+ messages in thread
From: Breno Leitao @ 2026-08-19 8:20 UTC (permalink / raw)
To: Sungho Bae
Cc: Amit Shah, Arnd Bergmann, Greg Kroah-Hartman, Sungho Bae,
virtualization, linux-kernel, kernel-team
Hello Sungho,
On Wed, Aug 19, 2026 at 11:39:26AM +0900, Sungho Bae wrote:
> I am sorry for the late reply.
> I fully agree with your patch.
> It was my mistake. I should have to allocate the buffer with gfp flags.
> Thank you for the corrections.
Thanks, would you mind adding your reviewed-by or acked-by tag, please?
--breno
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] virtio_console: allocate the port_buffer with the caller's gfp
2026-08-10 16:40 [PATCH] virtio_console: allocate the port_buffer with the caller's gfp Breno Leitao
2026-08-18 9:06 ` Breno Leitao
@ 2026-08-19 11:36 ` Sungho Bae
1 sibling, 0 replies; 5+ messages in thread
From: Sungho Bae @ 2026-08-19 11:36 UTC (permalink / raw)
To: Breno Leitao
Cc: Amit Shah, Arnd Bergmann, Greg Kroah-Hartman, Sungho Bae,
virtualization, linux-kernel, kernel-team
Hi Breno,
(Sorry, sending this again as I forgot to use reply-all in my previous email.)
On Tue, Aug 11, 2026 at 1:46 AM Breno Leitao <leitao@debian.org> wrote:
>
> put_chars() runs from the hvc console write path with preemption
> disabled, so it asks alloc_buf() for GFP_ATOMIC. Only the data buffer
> gets it: the struct port_buffer itself keeps the GFP_KERNEL default, so
> the allocation can enter direct reclaim and sleep. A write to /dev/kmsg
> on a CONFIG_DEBUG_ATOMIC_SLEEP kernel splats:
>
> BUG: sleeping function called from invalid context at ./include/linux/sched/mm.h:320
> in_atomic(): 1, irqs_disabled(): 1, non_block: 0, pid: 1, name: virtme-ng-init
> preempt_count: 1, expected: 0
> Preemption disabled at:
> [<ffffffff813fd90d>] vprintk_emit+0x17d/0x510
> Call Trace:
> <TASK>
> dump_stack_lvl+0x69/0xa0
> __might_resched+0x37a/0x4d0
> __kmalloc_cache_noprof+0x94/0x5f0
> put_chars+0x209/0x3e0
> hvc_console_print+0x234/0x640
> console_flush_all+0x4fc/0x950
> console_unlock+0xbf/0x1b0
> vprintk_emit+0x312/0x510
> devkmsg_emit+0xba/0x110
> devkmsg_write+0x21b/0x2e0
> vfs_write+0x4dc/0x9d0
> ksys_write+0x108/0x1e0
> do_syscall_64+0xfa/0x460
> </TASK>
>
> Pass gfp on to that allocation too.
>
> Fixes: fc220d6be3c7 ("virtio_console: refactor __send_to_port() buffer ownership")
> Signed-off-by: Breno Leitao <leitao@debian.org>
Looks good to me.
Thanks for fixing the part I missed.
Acked-by: Sungho Bae <baver.bae@lge.com>
--
Thanks,
Sungho
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-08-19 11:36 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-10 16:40 [PATCH] virtio_console: allocate the port_buffer with the caller's gfp Breno Leitao
2026-08-18 9:06 ` Breno Leitao
2026-08-19 2:39 ` Sungho Bae
2026-08-19 8:20 ` Breno Leitao
2026-08-19 11:36 ` Sungho Bae
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.