* [PATCH] tap: fix net_init_tap() return code
@ 2023-04-04 16:00 Steve Sistare
2023-04-04 22:00 ` Philippe Mathieu-Daudé
0 siblings, 1 reply; 8+ messages in thread
From: Steve Sistare @ 2023-04-04 16:00 UTC (permalink / raw)
To: qemu-devel, Jason Wang; +Cc: Steve Sistare
When net_init_tap() succeeds for a multi-queue device, it returns a
non-zero ret=1 code to its caller, because of this code where ret becomes
1 when g_unix_set_fd_nonblocking succeeds. Luckily, the only current call
site checks for negative, rather than non-zero.
ret = g_unix_set_fd_nonblocking(fd, true, NULL);
if (!ret) {
...
goto free_fail;
Also, if g_unix_set_fd_nonblocking fails (though unlikely), ret=0 is returned,
and the caller will use a broken interface.
Fixes: a8208626ba89.. ("net: replace qemu_set_nonblock()")
Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
---
net/tap.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/tap.c b/net/tap.c
index 1bf085d..1f3e927 100644
--- a/net/tap.c
+++ b/net/tap.c
@@ -906,8 +906,8 @@ int net_init_tap(const Netdev *netdev, const char *name,
goto free_fail;
}
- ret = g_unix_set_fd_nonblocking(fd, true, NULL);
- if (!ret) {
+ if (!g_unix_set_fd_nonblocking(fd, true, NULL)) {
+ ret = -1;
error_setg_errno(errp, errno, "%s: Can't use file descriptor %d",
name, fd);
goto free_fail;
--
1.8.3.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] tap: fix net_init_tap() return code
2023-04-04 16:00 [PATCH] tap: fix net_init_tap() return code Steve Sistare
@ 2023-04-04 22:00 ` Philippe Mathieu-Daudé
2023-04-05 15:38 ` Steven Sistare
0 siblings, 1 reply; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2023-04-04 22:00 UTC (permalink / raw)
To: Steve Sistare, qemu-devel, Jason Wang
On 4/4/23 18:00, Steve Sistare wrote:
> When net_init_tap() succeeds for a multi-queue device, it returns a
> non-zero ret=1 code to its caller, because of this code where ret becomes
Indeed g_unix_set_fd_nonblocking() returns TRUE on success.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> 1 when g_unix_set_fd_nonblocking succeeds. Luckily, the only current call
> site checks for negative, rather than non-zero.
>
> ret = g_unix_set_fd_nonblocking(fd, true, NULL);
> if (!ret) {
> ...
> goto free_fail;
>
> Also, if g_unix_set_fd_nonblocking fails (though unlikely), ret=0 is returned,
> and the caller will use a broken interface.
We should return -1 from free_fail, not trying to propagate 'ret':
-- >8 --
diff --git a/net/tap.c b/net/tap.c
index 1bf085d422..e59238bda0 100644
--- a/net/tap.c
+++ b/net/tap.c
@@ -821,3 +821,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
char ifname[128];
- int ret = 0;
@@ -896,3 +895,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
"the number of vhostfds passed");
- ret = -1;
goto free_fail;
@@ -904,3 +902,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
if (fd == -1) {
- ret = -1;
goto free_fail;
@@ -908,4 +905,3 @@ int net_init_tap(const Netdev *netdev, const char *name,
- ret = g_unix_set_fd_nonblocking(fd, true, NULL);
- if (!ret) {
+ if (!g_unix_set_fd_nonblocking(fd, true, NULL)) {
error_setg_errno(errp, errno, "%s: Can't use file
descriptor %d",
@@ -918,3 +914,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
if (vnet_hdr < 0) {
- ret = -1;
goto free_fail;
@@ -924,3 +919,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
"vnet_hdr not consistent across given tap
fds");
- ret = -1;
goto free_fail;
@@ -934,3 +928,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
error_propagate(errp, err);
- ret = -1;
goto free_fail;
@@ -948,3 +941,3 @@ free_fail:
g_free(vhost_fds);
- return ret;
+ return -1;
} else if (tap->helper) {
---
> Fixes: a8208626ba89.. ("net: replace qemu_set_nonblock()")
> Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
> ---
> net/tap.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] tap: fix net_init_tap() return code
2023-04-04 22:00 ` Philippe Mathieu-Daudé
@ 2023-04-05 15:38 ` Steven Sistare
2023-04-11 6:32 ` Jason Wang
0 siblings, 1 reply; 8+ messages in thread
From: Steven Sistare @ 2023-04-05 15:38 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, qemu-devel, Jason Wang
On 4/4/2023 6:00 PM, Philippe Mathieu-Daudé wrote:
> On 4/4/23 18:00, Steve Sistare wrote:
>> When net_init_tap() succeeds for a multi-queue device, it returns a
>> non-zero ret=1 code to its caller, because of this code where ret becomes
>
> Indeed g_unix_set_fd_nonblocking() returns TRUE on success.
>
> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
>
>> 1 when g_unix_set_fd_nonblocking succeeds. Luckily, the only current call
>> site checks for negative, rather than non-zero.
>>
>> ret = g_unix_set_fd_nonblocking(fd, true, NULL);
>> if (!ret) {
>> ...
>> goto free_fail;
>>
>> Also, if g_unix_set_fd_nonblocking fails (though unlikely), ret=0 is returned,
>> and the caller will use a broken interface.
>
> We should return -1 from free_fail, not trying to propagate 'ret':
Thanks for the review. I will add your "return -1" changes if Jason agrees.
- Steve
>
> -- >8 --
> diff --git a/net/tap.c b/net/tap.c
> index 1bf085d422..e59238bda0 100644
> --- a/net/tap.c
> +++ b/net/tap.c
> @@ -821,3 +821,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
> char ifname[128];
> - int ret = 0;
>
> @@ -896,3 +895,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
> "the number of vhostfds passed");
> - ret = -1;
> goto free_fail;
> @@ -904,3 +902,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
> if (fd == -1) {
> - ret = -1;
> goto free_fail;
> @@ -908,4 +905,3 @@ int net_init_tap(const Netdev *netdev, const char *name,
>
> - ret = g_unix_set_fd_nonblocking(fd, true, NULL);
> - if (!ret) {
> + if (!g_unix_set_fd_nonblocking(fd, true, NULL)) {
> error_setg_errno(errp, errno, "%s: Can't use file descriptor %d",
> @@ -918,3 +914,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
> if (vnet_hdr < 0) {
> - ret = -1;
> goto free_fail;
> @@ -924,3 +919,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
> "vnet_hdr not consistent across given tap fds");
> - ret = -1;
> goto free_fail;
> @@ -934,3 +928,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
> error_propagate(errp, err);
> - ret = -1;
> goto free_fail;
> @@ -948,3 +941,3 @@ free_fail:
> g_free(vhost_fds);
> - return ret;
> + return -1;
> } else if (tap->helper) {
> ---
>
>> Fixes: a8208626ba89.. ("net: replace qemu_set_nonblock()")
>> Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
>> ---
>> net/tap.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] tap: fix net_init_tap() return code
2023-04-05 15:38 ` Steven Sistare
@ 2023-04-11 6:32 ` Jason Wang
2023-04-11 13:10 ` Steven Sistare
0 siblings, 1 reply; 8+ messages in thread
From: Jason Wang @ 2023-04-11 6:32 UTC (permalink / raw)
To: Steven Sistare, Philippe Mathieu-Daudé, qemu-devel
在 2023/4/5 23:38, Steven Sistare 写道:
> On 4/4/2023 6:00 PM, Philippe Mathieu-Daudé wrote:
>> On 4/4/23 18:00, Steve Sistare wrote:
>>> When net_init_tap() succeeds for a multi-queue device, it returns a
>>> non-zero ret=1 code to its caller, because of this code where ret becomes
>> Indeed g_unix_set_fd_nonblocking() returns TRUE on success.
>>
>> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
>>
>>> 1 when g_unix_set_fd_nonblocking succeeds. Luckily, the only current call
>>> site checks for negative, rather than non-zero.
>>>
>>> ret = g_unix_set_fd_nonblocking(fd, true, NULL);
>>> if (!ret) {
>>> ...
>>> goto free_fail;
>>>
>>> Also, if g_unix_set_fd_nonblocking fails (though unlikely), ret=0 is returned,
>>> and the caller will use a broken interface.
>> We should return -1 from free_fail, not trying to propagate 'ret':
> Thanks for the review. I will add your "return -1" changes if Jason agrees.
>
> - Steve
Note that the "free_fail" label is kind of ambiguous. It is used even if
we succeed if I was not wrong.
Thanks
>> -- >8 --
>> diff --git a/net/tap.c b/net/tap.c
>> index 1bf085d422..e59238bda0 100644
>> --- a/net/tap.c
>> +++ b/net/tap.c
>> @@ -821,3 +821,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
>> char ifname[128];
>> - int ret = 0;
>>
>> @@ -896,3 +895,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
>> "the number of vhostfds passed");
>> - ret = -1;
>> goto free_fail;
>> @@ -904,3 +902,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
>> if (fd == -1) {
>> - ret = -1;
>> goto free_fail;
>> @@ -908,4 +905,3 @@ int net_init_tap(const Netdev *netdev, const char *name,
>>
>> - ret = g_unix_set_fd_nonblocking(fd, true, NULL);
>> - if (!ret) {
>> + if (!g_unix_set_fd_nonblocking(fd, true, NULL)) {
>> error_setg_errno(errp, errno, "%s: Can't use file descriptor %d",
>> @@ -918,3 +914,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
>> if (vnet_hdr < 0) {
>> - ret = -1;
>> goto free_fail;
>> @@ -924,3 +919,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
>> "vnet_hdr not consistent across given tap fds");
>> - ret = -1;
>> goto free_fail;
>> @@ -934,3 +928,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
>> error_propagate(errp, err);
>> - ret = -1;
>> goto free_fail;
>> @@ -948,3 +941,3 @@ free_fail:
>> g_free(vhost_fds);
>> - return ret;
>> + return -1;
>> } else if (tap->helper) {
>> ---
>>
>>> Fixes: a8208626ba89.. ("net: replace qemu_set_nonblock()")
>>> Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
>>> ---
>>> net/tap.c | 4 ++--
>>> 1 file changed, 2 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] tap: fix net_init_tap() return code
2023-04-11 6:32 ` Jason Wang
@ 2023-04-11 13:10 ` Steven Sistare
2023-04-13 6:57 ` Jason Wang
0 siblings, 1 reply; 8+ messages in thread
From: Steven Sistare @ 2023-04-11 13:10 UTC (permalink / raw)
To: Jason Wang, Philippe Mathieu-Daudé, qemu-devel
On 4/11/2023 2:32 AM, Jason Wang wrote:
> 在 2023/4/5 23:38, Steven Sistare 写道:
>> On 4/4/2023 6:00 PM, Philippe Mathieu-Daudé wrote:
>>> On 4/4/23 18:00, Steve Sistare wrote:
>>>> When net_init_tap() succeeds for a multi-queue device, it returns a
>>>> non-zero ret=1 code to its caller, because of this code where ret becomes
>>> Indeed g_unix_set_fd_nonblocking() returns TRUE on success.
>>>
>>> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
>>>
>>>> 1 when g_unix_set_fd_nonblocking succeeds. Luckily, the only current call
>>>> site checks for negative, rather than non-zero.
>>>>
>>>> ret = g_unix_set_fd_nonblocking(fd, true, NULL);
>>>> if (!ret) {
>>>> ...
>>>> goto free_fail;
>>>>
>>>> Also, if g_unix_set_fd_nonblocking fails (though unlikely), ret=0 is returned,
>>>> and the caller will use a broken interface.
>>> We should return -1 from free_fail, not trying to propagate 'ret':
>> Thanks for the review. I will add your "return -1" changes if Jason agrees.
>
> Note that the "free_fail" label is kind of ambiguous. It is used even if we succeed if I was not wrong.
Yes, good catch. We must return 0 from free_fail on success.
I could delete all uses of ret, test errp in free_fail, and return either -1 or 0.
Or, you could accept my initial small patch.
What do you prefer?
- Steve
>>> -- >8 --
>>> diff --git a/net/tap.c b/net/tap.c
>>> index 1bf085d422..e59238bda0 100644
>>> --- a/net/tap.c
>>> +++ b/net/tap.c
>>> @@ -821,3 +821,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
>>> char ifname[128];
>>> - int ret = 0;
>>>
>>> @@ -896,3 +895,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
>>> "the number of vhostfds passed");
>>> - ret = -1;
>>> goto free_fail;
>>> @@ -904,3 +902,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
>>> if (fd == -1) {
>>> - ret = -1;
>>> goto free_fail;
>>> @@ -908,4 +905,3 @@ int net_init_tap(const Netdev *netdev, const char *name,
>>>
>>> - ret = g_unix_set_fd_nonblocking(fd, true, NULL);
>>> - if (!ret) {
>>> + if (!g_unix_set_fd_nonblocking(fd, true, NULL)) {
>>> error_setg_errno(errp, errno, "%s: Can't use file descriptor %d",
>>> @@ -918,3 +914,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
>>> if (vnet_hdr < 0) {
>>> - ret = -1;
>>> goto free_fail;
>>> @@ -924,3 +919,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
>>> "vnet_hdr not consistent across given tap fds");
>>> - ret = -1;
>>> goto free_fail;
>>> @@ -934,3 +928,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
>>> error_propagate(errp, err);
>>> - ret = -1;
>>> goto free_fail;
>>> @@ -948,3 +941,3 @@ free_fail:
>>> g_free(vhost_fds);
>>> - return ret;
>>> + return -1;
>>> } else if (tap->helper) {
>>> ---
>>>
>>>> Fixes: a8208626ba89.. ("net: replace qemu_set_nonblock()")
>>>> Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
>>>> ---
>>>> net/tap.c | 4 ++--
>>>> 1 file changed, 2 insertions(+), 2 deletions(-)
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] tap: fix net_init_tap() return code
2023-04-11 13:10 ` Steven Sistare
@ 2023-04-13 6:57 ` Jason Wang
0 siblings, 0 replies; 8+ messages in thread
From: Jason Wang @ 2023-04-13 6:57 UTC (permalink / raw)
To: Steven Sistare; +Cc: Philippe Mathieu-Daudé, qemu-devel
On Tue, Apr 11, 2023 at 9:10 PM Steven Sistare
<steven.sistare@oracle.com> wrote:
>
> On 4/11/2023 2:32 AM, Jason Wang wrote:
> > 在 2023/4/5 23:38, Steven Sistare 写道:
> >> On 4/4/2023 6:00 PM, Philippe Mathieu-Daudé wrote:
> >>> On 4/4/23 18:00, Steve Sistare wrote:
> >>>> When net_init_tap() succeeds for a multi-queue device, it returns a
> >>>> non-zero ret=1 code to its caller, because of this code where ret becomes
> >>> Indeed g_unix_set_fd_nonblocking() returns TRUE on success.
> >>>
> >>> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> >>>
> >>>> 1 when g_unix_set_fd_nonblocking succeeds. Luckily, the only current call
> >>>> site checks for negative, rather than non-zero.
> >>>>
> >>>> ret = g_unix_set_fd_nonblocking(fd, true, NULL);
> >>>> if (!ret) {
> >>>> ...
> >>>> goto free_fail;
> >>>>
> >>>> Also, if g_unix_set_fd_nonblocking fails (though unlikely), ret=0 is returned,
> >>>> and the caller will use a broken interface.
> >>> We should return -1 from free_fail, not trying to propagate 'ret':
> >> Thanks for the review. I will add your "return -1" changes if Jason agrees.
> >
> > Note that the "free_fail" label is kind of ambiguous. It is used even if we succeed if I was not wrong.
>
> Yes, good catch. We must return 0 from free_fail on success.
> I could delete all uses of ret, test errp in free_fail, and return either -1 or 0.
> Or, you could accept my initial small patch.
>
> What do you prefer?
I've queued your patch for 8.1.
Thanks
>
> - Steve
>
> >>> -- >8 --
> >>> diff --git a/net/tap.c b/net/tap.c
> >>> index 1bf085d422..e59238bda0 100644
> >>> --- a/net/tap.c
> >>> +++ b/net/tap.c
> >>> @@ -821,3 +821,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
> >>> char ifname[128];
> >>> - int ret = 0;
> >>>
> >>> @@ -896,3 +895,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
> >>> "the number of vhostfds passed");
> >>> - ret = -1;
> >>> goto free_fail;
> >>> @@ -904,3 +902,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
> >>> if (fd == -1) {
> >>> - ret = -1;
> >>> goto free_fail;
> >>> @@ -908,4 +905,3 @@ int net_init_tap(const Netdev *netdev, const char *name,
> >>>
> >>> - ret = g_unix_set_fd_nonblocking(fd, true, NULL);
> >>> - if (!ret) {
> >>> + if (!g_unix_set_fd_nonblocking(fd, true, NULL)) {
> >>> error_setg_errno(errp, errno, "%s: Can't use file descriptor %d",
> >>> @@ -918,3 +914,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
> >>> if (vnet_hdr < 0) {
> >>> - ret = -1;
> >>> goto free_fail;
> >>> @@ -924,3 +919,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
> >>> "vnet_hdr not consistent across given tap fds");
> >>> - ret = -1;
> >>> goto free_fail;
> >>> @@ -934,3 +928,2 @@ int net_init_tap(const Netdev *netdev, const char *name,
> >>> error_propagate(errp, err);
> >>> - ret = -1;
> >>> goto free_fail;
> >>> @@ -948,3 +941,3 @@ free_fail:
> >>> g_free(vhost_fds);
> >>> - return ret;
> >>> + return -1;
> >>> } else if (tap->helper) {
> >>> ---
> >>>
> >>>> Fixes: a8208626ba89.. ("net: replace qemu_set_nonblock()")
> >>>> Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
> >>>> ---
> >>>> net/tap.c | 4 ++--
> >>>> 1 file changed, 2 insertions(+), 2 deletions(-)
> >
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] tap: fix net_init_tap() return code
@ 2025-07-14 20:36 Steve Sistare
2025-07-14 22:31 ` Philippe Mathieu-Daudé
0 siblings, 1 reply; 8+ messages in thread
From: Steve Sistare @ 2025-07-14 20:36 UTC (permalink / raw)
To: qemu-devel; +Cc: Jason Wang, Steve Sistare
net_init_tap intends to return 0 for success and -1 on error. However,
when net_init_tap() succeeds for a multi-queue device, it returns 1,
because of this code where ret becomes 1 when g_unix_set_fd_nonblocking
succeeds:
ret = g_unix_set_fd_nonblocking(fd, true, NULL);
if (!ret) {
... error ...
free_fail:
...
return ret;
Luckily, the only current call site checks for negative, rather than non-zero:
net_client_init1()
if (net_client_init_fun[](...) < 0)
Also, in the unlikely case that g_unix_set_fd_nonblocking fails and returns
false, ret=0 is returned, and net_client_init1 will use a broken interface.
Fix it to be future proof.
Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
---
net/tap.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/tap.c b/net/tap.c
index ae1c7e3..35552c4 100644
--- a/net/tap.c
+++ b/net/tap.c
@@ -854,8 +854,8 @@ int net_init_tap(const Netdev *netdev, const char *name,
goto free_fail;
}
- ret = g_unix_set_fd_nonblocking(fd, true, NULL);
- if (!ret) {
+ if (!g_unix_set_fd_nonblocking(fd, true, NULL)) {
+ ret = -1;
error_setg_errno(errp, errno, "%s: Can't use file descriptor %d",
name, fd);
goto free_fail;
--
1.8.3.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] tap: fix net_init_tap() return code
2025-07-14 20:36 Steve Sistare
@ 2025-07-14 22:31 ` Philippe Mathieu-Daudé
0 siblings, 0 replies; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-07-14 22:31 UTC (permalink / raw)
To: Steve Sistare, qemu-devel; +Cc: Jason Wang
On 14/7/25 22:36, Steve Sistare wrote:
> net_init_tap intends to return 0 for success and -1 on error. However,
> when net_init_tap() succeeds for a multi-queue device, it returns 1,
> because of this code where ret becomes 1 when g_unix_set_fd_nonblocking
> succeeds:
>
> ret = g_unix_set_fd_nonblocking(fd, true, NULL);
> if (!ret) {
> ... error ...
> free_fail:
> ...
> return ret;
>
> Luckily, the only current call site checks for negative, rather than non-zero:
>
> net_client_init1()
> if (net_client_init_fun[](...) < 0)
>
> Also, in the unlikely case that g_unix_set_fd_nonblocking fails and returns
> false, ret=0 is returned, and net_client_init1 will use a broken interface.
>
> Fix it to be future proof.
>
> Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
> ---
> net/tap.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-07-14 22:36 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-04 16:00 [PATCH] tap: fix net_init_tap() return code Steve Sistare
2023-04-04 22:00 ` Philippe Mathieu-Daudé
2023-04-05 15:38 ` Steven Sistare
2023-04-11 6:32 ` Jason Wang
2023-04-11 13:10 ` Steven Sistare
2023-04-13 6:57 ` Jason Wang
-- strict thread matches above, loose matches on Subject: below --
2025-07-14 20:36 Steve Sistare
2025-07-14 22:31 ` Philippe Mathieu-Daudé
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).