Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d046943c authored by Al Viro's avatar Al Viro Committed by Linus Torvalds
Browse files

fix gfp_t annotations for slub



	Since we have use like ~SLUB_DMA, we ought to have the type
set right in both cases.

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 8d4bc5b6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ static inline struct kmem_cache *kmalloc_slab(size_t size)
#define SLUB_DMA __GFP_DMA
#else
/* Disable DMA functionality */
#define SLUB_DMA 0
#define SLUB_DMA (__force gfp_t)0
#endif

void *kmem_cache_alloc(struct kmem_cache *, gfp_t);