Re: [PATCH net v1] vsock/test: fix SEQPACKET message bounds test

2023-11-23 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (main) by Jakub Kicinski : On Wed, 22 Nov 2023 00:16:42 +0300 you wrote: > Tune message length calculation to make this test work on machines > where 'getpagesize()' returns >32KB. Now maximum message length is not > hardcoded (on machines above it

Re: [PATCH net v1] vsock/test: fix SEQPACKET message bounds test

2023-11-22 Thread Stefano Garzarella
On Wed, Nov 22, 2023 at 12:16:42AM +0300, Arseniy Krasnov wrote: Tune message length calculation to make this test work on machines where 'getpagesize()' returns >32KB. Now maximum message length is not hardcoded (on machines above it was smaller than 'getpagesize()' return value, thus we get

[PATCH net v1] vsock/test: fix SEQPACKET message bounds test

2023-11-21 Thread Arseniy Krasnov
Tune message length calculation to make this test work on machines where 'getpagesize()' returns >32KB. Now maximum message length is not hardcoded (on machines above it was smaller than 'getpagesize()' return value, thus we get negative value and test fails), but calculated at runtime and always