Lines Matching refs:lsl
705 struct sram_list_struct *lsl, **tmp; in sram_free_with_lsl() local
711 lsl = *tmp; in sram_free_with_lsl()
713 *tmp = lsl->next; in sram_free_with_lsl()
714 kfree(lsl); in sram_free_with_lsl()
729 struct sram_list_struct *lsl = NULL; in sram_alloc_with_lsl() local
732 lsl = kzalloc(sizeof(struct sram_list_struct), GFP_KERNEL); in sram_alloc_with_lsl()
733 if (!lsl) in sram_alloc_with_lsl()
749 kfree(lsl); in sram_alloc_with_lsl()
752 lsl->addr = addr; in sram_alloc_with_lsl()
753 lsl->length = size; in sram_alloc_with_lsl()
754 lsl->next = mm->context.sram_list; in sram_alloc_with_lsl()
755 mm->context.sram_list = lsl; in sram_alloc_with_lsl()