Greg KH wrote: > On Fri, May 20, 2005 at 08:24:09PM -0400, Prarit Bhargava wrote: > >>+ list_for_each(list, &sn_sysdata_list) { >>+ element = list_entry(list, struct sysdata_el, entry); > > > All instances of list_for_each() and then a list_entry() call can be > replaced with list_for_each_entry(). New patch with list_for_each_entry. P.