> On Apr 2, 2025, at 15:38, B Harder <brad.har...@gmail.com> wrote:
>
>
>
>> On Apr 2, 2025, at 12:07, Adam <a...@netbsd.org> wrote:
>>
>> On the recent -current [1], something is wrong with accept(). This Python
>> script fails:
>>
>> ```
>> import socket
>>
>> socket_path = "/tmp/my_unix_socket"
>> server = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
>> server.bind(socket_path)
>> server.listen(5)
>> connection, client_address = server.accept()
>> ```
>>
>> with "OSError: [Errno 14] Bad address".
>>
>> Now it is not possible to build Firefox, because its Python script goes into
>> an infinite loop, and ktrace shows calls to 'paccept'.
>>
>
> I first noticed this yesterday - Taylor did some paccept work *after* (I
> think) that I'm testing now.
I just refreshed src and built a kernel (and userland) and this issue did not
come up.
-bch
>
> -bch
>
>> Please, help.
>> Adam
>>
>>
>>
>> [1] I've built one today. My previous build was about a week old and the
>> problem didn't occur.