Re: GSoC 2019

2019-02-28 Thread maya
On Fri, Mar 01, 2019 at 06:03:07AM +0530, Surya Shankar wrote: > Hey NetBSD Team, > I am a computer science engineering student. I am > very much interested to contribute to the NetBSD foundation for google > summer of code 19. I am passionate about cybersecurity and I play a >

GSoC 2019

2019-02-28 Thread Surya Shankar
Hey NetBSD Team, I am a computer science engineering student. I am very much interested to contribute to the NetBSD foundation for google summer of code 19. I am passionate about cybersecurity and I play a lot of CTF's. I play for the teams OTA and scorpion and I mainly focus on

Re: RFC: New userspace fetch/store API

2019-02-28 Thread Mindaugas Rasiukevicius
Jason Thorpe wrote: > > Please prefix the size with 'u' if you operate on unsigned types: > > > > ufetch_u{8,16,32,64} and the same for ustore_* > > Even at the expense of being different from atomic_ops(3)? > atomic_ops(3) has atomic_cas_u{int,long}; ufetch_32() vs ufetch_u32() is less of

Re: To get net ioctl number

2019-02-28 Thread Kamil Rytarowski
On 28.02.2019 08:24, Iain Hibbert wrote: > On Thu, 28 Feb 2019, Masanobu SAITOH wrote: > >> I'd like to get new number for new ioctl. How should I find unused number >> for it? I'm going to add new SIOCXXX. It may not enough to grep sys/net/*.h, >> so I made usr.bin/kdump-ioctl.c and did >> >>

Re: To get net ioctl number

2019-02-28 Thread Masanobu SAITOH
On 2019/02/28 16:54, matthew green wrote: Iain Hibbert writes: On Thu, 28 Feb 2019, Masanobu SAITOH wrote: I'd like to get new number for new ioctl. How should I find unused number for it? I'm going to add new SIOCXXX. It may not enough to grep sys/net/*.h, so I made usr.bin/kdump-ioctl.c