Files
i2som-imx-linux/include/linux
Cheng Renquan 159ec1fc06 md: use list_for_each_entry macro directly
The rdev_for_each macro defined in <linux/raid/md_k.h> is identical to
list_for_each_entry_safe, from <linux/list.h>, it should be defined to
use list_for_each_entry_safe, instead of reinventing the wheel.

But some calls to each_entry_safe don't really need a safe version,
just a direct list_for_each_entry is enough, this could save a temp
variable (tmp) in every function that used rdev_for_each.

In this patch, most rdev_for_each loops are replaced by list_for_each_entry,
totally save many tmp vars; and only in the other situations that will call
list_del to delete an entry, the safe version is used.

Signed-off-by: Cheng Renquan <crquan@gmail.com>
Signed-off-by: NeilBrown <neilb@suse.de>
2009-01-09 08:31:08 +11:00
..
2009-01-07 17:38:32 -05:00
2009-01-06 15:59:29 -08:00
2009-01-06 15:59:01 -08:00
2009-01-06 15:59:01 -08:00
2009-01-07 14:29:17 +01:00
2009-01-05 08:40:30 -08:00
2009-01-05 08:40:30 -08:00
2009-01-06 15:58:58 -08:00
2009-01-07 17:38:31 -05:00
2009-01-06 10:44:30 -08:00
2009-01-06 15:59:12 -08:00
2009-01-05 18:31:12 -08:00
2009-01-07 09:58:22 +11:00
2009-01-07 10:00:14 -08:00
2009-01-06 15:59:09 -08:00