Lines Matching refs:next
113 struct flash_block_list *next; member
175 for (f = flist; f; f = f->next) { in flash_list_valid()
200 struct flash_block_list *next; in free_flash_list() local
206 next = f->next; in free_flash_list()
208 f = next; in free_flash_list()
338 while (fl->next) in rtas_flash_write()
339 fl = fl->next; /* seek to last block_list for append */ in rtas_flash_write()
343 fl->next = kmem_cache_zalloc(flash_block_cache, GFP_KERNEL); in rtas_flash_write()
344 if (!fl->next) in rtas_flash_write()
346 fl = fl->next; in rtas_flash_write()
564 struct flash_block_list *f, *next, *flist; in rtas_flash_firmware() local
599 flist->next = rtas_firmware_flash_list; in rtas_flash_firmware()
611 for (f = flist; f; f = next) { in rtas_flash_firmware()
618 next = f->next; in rtas_flash_firmware()
620 if (f->next) in rtas_flash_firmware()
621 f->next = (struct flash_block_list *)cpu_to_be64(__pa(f->next)); in rtas_flash_firmware()
623 f->next = NULL; in rtas_flash_firmware()