您好,登錄后才能下訂單哦!
這篇文章主要講解了“Linux內核內存分配函數kzalloc和kcalloc怎么使用”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Linux內核內存分配函數kzalloc和kcalloc怎么使用”吧!
文件:include/linux/slab.h
,定義如下:
/** * 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 kmalloc). */static inline void *kzalloc(size_t size, gfp_t flags){ return kmalloc(size, flags | __GFP_ZERO);}
kzalloc()
函數功能同kmalloc()
。區別:內存分配成功后清零。
每次使用kzalloc()
后,都要有對應的內存釋放函數kfree()
。
舉例:
static int rockchip_drm_open(struct drm_device *dev, struct drm_file *file){ ... file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL); ... kfree(file_priv); file_priv = NULL; ...}
文件:include/linux/slab.h
,定義如下:
/** * kmalloc_array - allocate memory for an array. * @n: number of elements. * @size: element size. * @flags: the type of memory to allocate (see kmalloc). */static inline void *kmalloc_array(size_t n, size_t size, gfp_t flags){ if (size != 0 && n > SIZE_MAX / size) return NULL; return __kmalloc(n * size, flags);}/** * kcalloc - allocate memory for an array. The memory is set to zero. * @n: number of elements. * @size: element size. * @flags: the type of memory to allocate (see kmalloc). */static inline void *kcalloc(size_t n, size_t size, gfp_t flags){ return kmalloc_array(n, size, flags | __GFP_ZERO);}
kcalloc()
函數為數組分配內存,大小n*size
,并對分配的內存清零。該函數的最終實現類似kmalloc()
函數。
每次使用kcalloc()
后,都要有對應的內存釋放函數kfree()
。
舉例:
struct drm_clip_rect { unsigned short x1; unsigned short y1; unsigned short x2; unsigned short y2;};int drm_mode_dirtyfb_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv){ ... struct drm_clip_rect *clips = NULL; ... clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL); ... kfree(clips); ...}
感謝各位的閱讀,以上就是“Linux內核內存分配函數kzalloc和kcalloc怎么使用”的內容了,經過本文的學習后,相信大家對Linux內核內存分配函數kzalloc和kcalloc怎么使用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。