|
@@ -33,14 +33,4 @@ static inline void *__kmalloc(size_t size, gfp_t flags)
|
|
|
return kmalloc(size, flags);
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * kzalloc - allocate memory. The memory is set to zero.
|
|
|
- * @size: how many bytes of memory are required.
|
|
|
- * @flags: the type of memory to allocate (see kcalloc).
|
|
|
- */
|
|
|
-static inline void *kzalloc(size_t size, gfp_t flags)
|
|
|
-{
|
|
|
- return __kzalloc(size, flags);
|
|
|
-}
|
|
|
-
|
|
|
#endif /* __LINUX_SLOB_DEF_H */
|