Bugger. Didn't look further down. Ah, well. Incomplete bug report :-)
> > Ah, shit. I just checked the rwsem implementation. It seems that once
> > we do a down_write() (even if that blocks because someone else has a
> > down_read() already), subsequent down_read() calls will block until
> > the writer is granted access and then does up_write(). Damn. It would
> > have been good for this to be documented somewhere. Those are the
> > kinds of traps that should be mentioned in the header file.
> >
> > OK: is there a variant of rwsem which is "unfair" (i.e. readers can
> > starve writers indefinately)?
>
> IMO it's a wrong approach. Notice that all these problems
> have common reason - you are reusing entries. There's absolutely no
> need to do that. Separate the logics for "search" and "create", so
> that devfs_register() would fail if entry already exists. Detach it
> from the tree upon unregister(). And add a simple reference counter
> to the damn thing. Set it to 1 when entry is created. Bump it when
> you use it up/drop when you stop. And drop it when you detach from
> the tree. End of story. Symlink contents is freed along with the
> entry when refcount hits zero. No semaphores, no new locking
> primitives, no wheels to reinvent.
This is exactly what I've done in my big re-write.
> Now, given the unholy mess in your search_...() functions I
> don't envy you - cleaning them up _will_ hurt.
Yes, it *is* hurting :-( Those mutually recursive functions are the
last bits left to convert/burn-at-the-stake in my re-write. They're
the last bits precisely because they're the most ugly.
> Ditto for auditing the code for places that would retain a reference
> to unregistered entries. But as far as I can see that's the only
> realistic way to handle these problems.
Yep. My new code is looking *much* cleaner.
Regards,
Richard....
Permanent: rgooch@atnf.csiro.au
Current: rgooch@ras.ucalgary.ca
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/