Changeset 725 for GPL/branches/uniaud32-next/include/linux/slab.h
- Timestamp:
- Sep 5, 2022, 11:55:50 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/include/linux/slab.h
r723 r725 94 94 static inline void *kzalloc(size_t size, gfp_t flags) 95 95 { 96 return kmalloc(size, flags | __GFP_ZERO);96 return __kmalloc(size, flags | __GFP_ZERO); 97 97 } 98 98
Note:
See TracChangeset
for help on using the changeset viewer.