libfcoe: Save some memory and optimize name lookups
authorRobert Love <robert.w.love@intel.com>
Tue, 27 Nov 2012 06:53:19 +0000 (06:53 +0000)
committerRobert Love <robert.w.love@intel.com>
Tue, 4 Dec 2012 18:16:38 +0000 (10:16 -0800)
commitef60f674344cdb6d1da199f6b8d7d7016813cc6f
treeaafc59aa0fe5fd86e29c01abc882f819a8239725
parent354d1123c16942b8a3ca9131b8fc2f8c06e2ed7f
libfcoe: Save some memory and optimize name lookups

Instead of creating a structure with an enum and a pointer
to a string, simply allocate an array of strings and use
the enum values for the indicies.

This means that we do not need to iterate through the list
of entries when looking up a string name by its enum key.

This will also help with a latter patch that will add
more fcoe_sysfs attributes that will also use the
fcoe_enum_name_search macro. One attribute will also do
a reverse lookup which requires less code when the
enum-to-string mappings are organized as this patch makes
them to be.

Signed-off-by: Robert Love <robert.w.love@intel.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
drivers/scsi/fcoe/fcoe_sysfs.c