Ignore:
Timestamp:
Sep 6, 2022, 11:14:39 AM (3 years ago)
Author:
Paul Smedley
Message:

Revert changes from r723

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-next/include/linux/slab.h

    r725 r726  
    9292 * @flags: the type of memory to allocate (see kmalloc).
    9393 */
    94 static inline void *kzalloc(size_t size, gfp_t flags)
    95 {
    96         return __kmalloc(size, flags | __GFP_ZERO);
    97 }
    98 
     94void *kzalloc(size_t n, gfp_t gfp_flags);
    9995void *kcalloc(size_t n, size_t size, unsigned int __nocast gfp_flags);
    10096void *krealloc(const void *, size_t, gfp_t);
Note: See TracChangeset for help on using the changeset viewer.