Messages in this thread |  | | Date | Wed, 10 Oct 2001 12:36:03 +0530 | From | Dipankar Sarma <> | Subject | Re: [Lse-tech] Re: RFC: patch to allow lock-free traversal of lists with insertion |
| |
In article <3BC3D9ED.6050901@wipro.com> BALBIR SINGH wrote:
> What about cases like the pci device list or any other such list. Sometimes > you do not care if somebody added something, while you were looking through > the list as long as you do not get illegal addresses or data. > Wouldn't this be very useful there? Most of these lists come up > at system startup and change rearly, but we look through them often.
How often does the linux kernel need to go through the PCI device list ? Looking at only SCSI code, it seems that not very often. If that is the case in general, optimizing it for lockless lookup (assuming that you use RCU or something to support deletion), is probably an overkill.
One example of where it is useful is maintenance of route information in either storage or network. Route information changes infrequently but needs to be looked up for every I/O and being able to do lockless lookup here is a good gain.
Thanks Dipankar -- Dipankar Sarma <dipankar@in.ibm.com> Project: http://lse.sourceforge.net Linux Technology Center, IBM Software Lab, Bangalore, India. - 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/
|  |