Lines Matching refs:lsl
742 struct sram_list_struct *lsl, **tmp; in sram_free_with_lsl() local
748 lsl = *tmp; in sram_free_with_lsl()
750 *tmp = lsl->next; in sram_free_with_lsl()
751 kfree(lsl); in sram_free_with_lsl()
766 struct sram_list_struct *lsl = NULL; in sram_alloc_with_lsl() local
769 lsl = kzalloc(sizeof(struct sram_list_struct), GFP_KERNEL); in sram_alloc_with_lsl()
770 if (!lsl) in sram_alloc_with_lsl()
786 kfree(lsl); in sram_alloc_with_lsl()
789 lsl->addr = addr; in sram_alloc_with_lsl()
790 lsl->length = size; in sram_alloc_with_lsl()
791 lsl->next = mm->context.sram_list; in sram_alloc_with_lsl()
792 mm->context.sram_list = lsl; in sram_alloc_with_lsl()