Re: Push kernel lock into in6_ioctl()

2022-11-23 Thread Klemens Nanni
ng > > with the shared net lock alone. > > > > Feedback? OK? > > > > Could this be merged with the following non "Mechanical move" diff? Here is this commit squashed together with the two that would follow: --- Push kernel lock into in6_ioctl() Mec

Re: Push kernel lock into in6_ioctl()

2022-11-23 Thread Vitaliy Makkoveev
On Wed, Nov 23, 2022 at 08:46:41AM +, Klemens Nanni wrote: > Mechanical move that "unlocks" the errno(2) cases. > > This is another step towards more read-only interface ioctls running > with the shared net lock alone. > > Feedback? OK? > Could this be merged with the following non "Mec

Push kernel lock into in6_ioctl()

2022-11-23 Thread Klemens Nanni
Mechanical move that "unlocks" the errno(2) cases. This is another step towards more read-only interface ioctls running with the shared net lock alone. Feedback? OK? diff --git a/sys/netinet6/in6.c b/sys/netinet6/in6.c index 3fe9386f8af..47a381a1065 100644 --- a/sys/netinet6/in6.c +++ b/sys/