brand_list
list = kmem_alloc(sizeof (struct brand_list), KM_SLEEP);
for (scan = brand_list; scan != NULL; scan = scan->bl_next) {
kmem_free(list, sizeof (struct brand_list));
if (brand_list == NULL)
list->bl_next = brand_list;
brand_list = list;
struct brand_list *list, *prev;
for (list = brand_list; list != NULL; list = list->bl_next) {
brand_list = list->bl_next;
if (brand_list == NULL)
kmem_free(list, sizeof (struct brand_list));
struct brand_list *l = NULL;
for (l = brand_list; l != NULL; l = l->bl_next)
struct brand_list *l;
for (l = brand_list; l != NULL; l = l->bl_next)
struct brand_list *list;
for (list = brand_list; list != NULL; list = list->bl_next) {
struct brand_list *bl_next;
static struct brand_list *brand_list = NULL;
struct brand_list *list, *scan;