Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 198200
b: refs/heads/master
c: eb5400b
h: refs/heads/master
v: v3
  • Loading branch information
Mike Frysinger committed May 22, 2010
1 parent b56d885 commit 5e52c33
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: be1577e3787536290cc17afaeb2cd58bbcc7ed6c
refs/heads/master: eb5400b6131e6ebaacf809357643a22a72d5cc4c
3 changes: 2 additions & 1 deletion trunk/arch/blackfin/mm/sram-alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,8 @@ static void *_sram_alloc(size_t size, struct sram_piece *pfree_head,
plast->next = pslot->next;
pavail = pslot;
} else {
pavail = kmem_cache_alloc(sram_piece_cache, GFP_KERNEL);
/* use atomic so our L1 allocator can be used atomically */
pavail = kmem_cache_alloc(sram_piece_cache, GFP_ATOMIC);

if (!pavail)
return NULL;
Expand Down

0 comments on commit 5e52c33

Please sign in to comment.