mars/brick_mem.h

52 lines
1.9 KiB
C
Raw Normal View History

2011-08-12 11:09:48 +00:00
// (c) 2011 Thomas Schoebel-Theuer / 1&1 Internet AG
#ifndef BRICK_MEM_H
#define BRICK_MEM_H
#include <linux/mm_types.h>
#define GFP_BRICK GFP_NOIO
//#define GFP_BRICK GFP_KERNEL // can lead to deadlocks!
/////////////////////////////////////////////////////////////////////////
// small memory allocation (use this only for len < PAGE_SIZE)
2011-08-25 10:16:32 +00:00
#define brick_mem_alloc(_len_) _brick_mem_alloc(_len_, __LINE__)
#define brick_zmem_alloc(_len_) ({ void *_res_ = _brick_mem_alloc(_len_, __LINE__); if (_res_) { memset(_res_, 0, _len_); } _res_; })
2011-08-12 11:09:48 +00:00
extern void *_brick_mem_alloc(int len, int line);
2011-08-25 10:16:32 +00:00
#define brick_mem_free(_data_) _brick_mem_free(_data_, __LINE__)
2011-08-12 11:09:48 +00:00
extern void _brick_mem_free(void *data, int line);
/////////////////////////////////////////////////////////////////////////
// string memory allocation
2011-08-25 10:16:32 +00:00
#define BRICK_STRING_LEN 1024 /* default value when len == 0 */
#define brick_string_alloc(_len_) _brick_string_alloc(_len_, __LINE__)
#define brick_strdup(_orig_) ({ int _len_ = strlen(_orig_); char *_res_ = _brick_string_alloc(_len_ + 1, __LINE__); if (_res_) { strcpy(_res_, _orig_); } _res_; })
extern char *_brick_string_alloc(int len, int line);
#define brick_string_free(_data_) _brick_string_free(_data_, __LINE__)
2011-08-12 11:09:48 +00:00
extern void _brick_string_free(const char *data, int line);
extern void brick_mem_statistics(void);
/////////////////////////////////////////////////////////////////////////
// block memory allocation (for aligned multiples of 512 resp PAGE_SIZE)
2011-08-25 10:16:32 +00:00
#define brick_block_alloc(_pos_,_len_) _brick_block_alloc(_pos_, _len_, __LINE__)
2011-08-12 11:09:48 +00:00
extern void *_brick_block_alloc(loff_t pos, int len, int line);
extern void brick_block_free(void *data, int len);
extern struct page *brick_iomap(void *data, int *offset, int *len);
2011-08-25 10:16:32 +00:00
/////////////////////////////////////////////////////////////////////////
// init
extern int init_brick_mem(void);
extern void exit_brick_mem(void);
2011-08-12 11:09:48 +00:00
#endif