Date: Mon, 15 Nov 2010 10:33:25 -0800 From: Julian Elischer <julian@freebsd.org> To: Paul LeoNerd Evans <leonerd@leonerd.org.uk> Cc: freebsd-hackers@freebsd.org Subject: Re: Managing userland data pointers in kqueue/kevent Message-ID: <4CE17CF5.6050107@freebsd.org> In-Reply-To: <20101115181211.GV11110@cel.leo> References: <20101112184000.GS11110@cel.leo> <201011151125.42697.jhb@freebsd.org> <20101115181211.GV11110@cel.leo>
next in thread | previous in thread | raw e-mail | index | archive | help
On 11/15/10 10:12 AM, Paul LeoNerd Evans wrote: > On Mon, Nov 15, 2010 at 11:25:42AM -0500, John Baldwin wrote: >> I think the assumption is that userland actually maintains a reference on the >> specified object (e.g. a file descriptor) and will know to drop the associated >> data when the file descriptor is closed. That is, think of the kevent as a >> member of an eventable object rather than a separate object that has a >> reference to the eventable object. When the eventable object's reference >> count drops to zero in userland, then the kevent should be deleted, either via >> EV_DELETE, or implicitly (e.g. by closing the associated file descriptor). > Ah. Well, that could be considered a bit more awkward for the use case I > wanted to apply. The idea was that the udata would refer effectively > to a closure, to invoke when the event happens. The idea being you can > just add an event watcher by, say: > > $ev->EV_SET( $pid, EVFILT_PROC, 0, NOTE_EXIT, 0, sub { > print STDERR "The child process $pid has now exited\n"; > } ); > > So, the kernel's udata pointer effectively holds the only reference to > this anonymous closure. It's much more flexible this way, especially for > oneshot events like that. > > The beauty is also that the kevents() loop can simply know that the > udata is always a code reference so just has to invoke it to do whatever > the original caller wanted to do. > > Keep in mind my use-case here; I'm not trying to be one specific > application, it's a general-purpose kevent-wrapping library. > >> I think in your case you should not give the kevent a reference to your >> object, but instead remove the associated event for a given object when an >> object's refcount drops to zero. > Well that's certainly doable in longrunning watches, but I don't think > it sounds very convenient for a oneshot event; see the above example for > justification. > > Also it again begs my question, worth repeating here: > > On Friday, November 12, 2010 1:40:00 pm Paul LeoNerd Evans wrote: >> I had >> thought the point of kqueue/kevent is the O(1) nature of it, which is >> among why the kernel is storing that void *udata pointer in the first >> place. If I have to store a mapping from every filter+identity back to >> my data pointer, why does the kernel store one at all? I could just >> ignore the udata field and use my mapping for my own purposes. > If you're saying that in my not-so-rare use case, I don't want to be > using udata, and instead keeping my own mapping, why does the kernel > provide this udata field at all? it was provided for pretty much what you are using it for, so that the userland caller could easily associate the returning event with some private information about the event.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4CE17CF5.6050107>