Using sys/types.h types in sys/socket.h
Adrian Chadd
adrian at freebsd.org
Tue Dec 17 16:49:34 UTC 2013
On 17 December 2013 07:42, Warner Losh <imp at bsdimp.com> wrote:
> The tl;dr version: use sys/_types.h and use the usual conventions to avoid namespace pollution. I read Bruce's reply, and I think I'm saying the same things he is...
>
> Warner
Right. I was hoping for something dirty but not namespace pollution-y.
> On Dec 17, 2013, at 1:23 AM, Adrian Chadd wrote:
>
>> Hi,
>>
>> I have a patch to implement some new sendfile functionality, but this
>> involves adding stuff to sys/socket.h:
>>
>> Index: sys/sys/socket.h
>> ===================================================================
>> --- sys/sys/socket.h (revision 258883)
>> +++ sys/sys/socket.h (working copy)
>> @@ -577,11 +577,27 @@
>> };
>>
>> /*
>> + * sendfile(2) kqueue information
>> + */
>> +struct sf_hdtr_kq {
>> + int kq_fd; /* kq fd to post completion events on */
>> + uint32_t kq_flags; /* extra flags to pass in */
>> + void *kq_udata; /* user data pointer */
>> + uintptr_t kq_ident; /* ident (from userland?) */
>> +};
>
> This is a terrible interface. Or I'd say that the ordering of the elements in this structure is suboptimal. Having the uint32_t in the middle like that causes badness. Guess not much can be done about that given that fd must be an int, eh?
Yeah, the FD is an int. I can easily put that at the end and order it
more appropriately.
> To avoid namespace pollution, you'll need to include sys/_types.h use __uint32_t and __uintptr_t respectively. You'd also need
> #if __BSD_VISIBLE
> #ifndef _UINT32_T_DECLARED
> typedef __uint32_t uint32_t;
> #define _UINT32_T_DECLARED
> #endif
> and similar for __uintptr_t. thankfully, sys/_stdint.h already does this dance to avoid namespace pollution, so you just need a few lines at the top of socket.h to do this righ.
Ok.
I really dislike how the sendfile stuff is in sys/socket.h. It really
should be in its own header file so it doesn't pollute sys/socket.h.
I wish I had found this sendfile dirtiness all out before 10.0-RELEASE
so we could've just make a clean break. I'll evaluate possibly doing
it in -HEAD at some point soon.
-a
More information about the freebsd-arch
mailing list