From: James S. <jsi...@tr...> - 2001-06-19 17:33:21
|
> This brings up a few other potential issues in various other portions of > the code. This current approach is far too ugly, there are all sorts of > opportunities where it could be dereferencing NULL, etc. > > A more general solution for this kind of finding/removal of nodes from > the linked list would likely be a better solution. > > What does everyone think about something like the attached patch as a > more unified solution? Their is linux/include/linux/list.h which is a generic interface for double link list. From what I see their is no single link list implementation. |