Blackfin: use atomic kmalloc in L1 alloc so it too can be atomic

Some drivers allocate L1 SRAM in atomic contexts, so make sure these
functions also use GFP_ATOMIC to avoid BUG()'s.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

+2 -1
+2 -1
arch/blackfin/mm/sram-alloc.c
··· 256 256 plast->next = pslot->next; 257 257 pavail = pslot; 258 258 } else { 259 - pavail = kmem_cache_alloc(sram_piece_cache, GFP_KERNEL); 259 + /* use atomic so our L1 allocator can be used atomically */ 260 + pavail = kmem_cache_alloc(sram_piece_cache, GFP_ATOMIC); 260 261 261 262 if (!pavail) 262 263 return NULL;