diff options
-rw-r--r-- | include/linux/mm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index 0e493884e6e1..a0fbb9ffe380 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
@@ -575,6 +575,11 @@ static inline void *kvmalloc_array(size_t n, size_t size, gfp_t flags) | |||
575 | return kvmalloc(bytes, flags); | 575 | return kvmalloc(bytes, flags); |
576 | } | 576 | } |
577 | 577 | ||
578 | static inline void *kvcalloc(size_t n, size_t size, gfp_t flags) | ||
579 | { | ||
580 | return kvmalloc_array(n, size, flags | __GFP_ZERO); | ||
581 | } | ||
582 | |||
578 | extern void kvfree(const void *addr); | 583 | extern void kvfree(const void *addr); |
579 | 584 | ||
580 | static inline atomic_t *compound_mapcount_ptr(struct page *page) | 585 | static inline atomic_t *compound_mapcount_ptr(struct page *page) |