2014-11-21 10:51:34 +00:00
/*
* MARS Long Distance Replication Software
*
* This file is part of MARS project : http : //schoebel.github.io/mars/
*
* Copyright ( C ) 2010 - 2014 Thomas Schoebel - Theuer
* Copyright ( C ) 2011 - 2014 1 & 1 Internet AG
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License along
* with this program ; if not , write to the Free Software Foundation , Inc . ,
* 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA .
*/
2011-08-12 11:09:48 +00:00
# include <linux/kernel.h>
# include <linux/module.h>
# include <linux/mm.h>
2011-08-31 11:42:04 +00:00
# include <linux/fs.h>
2012-09-18 06:13:33 +00:00
# include <linux/slab.h>
# include <linux/delay.h>
2011-08-12 11:09:48 +00:00
# include <asm/atomic.h>
# include "brick_mem.h"
2012-01-09 16:12:06 +00:00
# include "brick_say.h"
2011-11-14 17:52:05 +00:00
# include "brick_locks.h"
2013-07-18 10:45:34 +00:00
# include "lamport.h"
2013-12-02 09:37:06 +00:00
# include "buildtag.h"
2011-08-12 11:09:48 +00:00
2011-11-14 17:52:05 +00:00
# define USE_KERNEL_PAGES // currently mandatory (vmalloc does not work)
2011-08-12 11:09:48 +00:00
2011-11-14 17:52:05 +00:00
# define MAGIC_BLOCK (int)0x8B395D7B
# define MAGIC_BEND (int)0x8B395D7C
2012-11-06 11:09:41 +00:00
# define MAGIC_MEM1 (int)0x8B395D7D
# define MAGIC_MEM2 (int)0x9B395D8D
# define MAGIC_MEND1 (int)0x8B395D7E
# define MAGIC_MEND2 (int)0x9B395D8E
2011-11-14 17:52:05 +00:00
# define MAGIC_STR (int)0x8B395D7F
2012-11-06 11:09:41 +00:00
# define MAGIC_SEND (int)0x9B395D8F
2011-08-12 11:09:48 +00:00
# define INT_ACCESS(ptr,offset) (*(int*)(((char*)(ptr)) + (offset)))
2013-12-02 08:45:07 +00:00
# define _BRICK_FMT(_fmt,_class) \
" %ld.%09ld %ld.%09ld MEM_%-5s %s[%d] %s:%d %s(): " \
_fmt , \
2013-07-18 10:45:34 +00:00
_s_now . tv_sec , _s_now . tv_nsec , \
_l_now . tv_sec , _l_now . tv_nsec , \
2013-12-02 08:45:07 +00:00
say_class [ _class ] , \
current - > comm , ( int ) smp_processor_id ( ) , \
2013-07-18 10:45:34 +00:00
__BASE_FILE__ , \
__LINE__ , \
__FUNCTION__
2012-10-11 06:25:41 +00:00
# define _BRICK_MSG(_class, _dump, _fmt, _args...) \
2013-07-18 10:45:34 +00:00
do { \
2017-04-15 06:21:21 +00:00
struct timespec _s_now ; \
2013-07-18 10:45:34 +00:00
struct timespec _l_now ; \
2017-04-15 06:21:21 +00:00
get_lamport ( & _s_now , & _l_now ) ; \
2013-12-02 08:45:07 +00:00
say ( _class , _BRICK_FMT ( _fmt , _class ) , # # _args ) ; if ( _dump ) dump_stack ( ) ; \
2013-07-18 10:45:34 +00:00
} while ( 0 )
2012-10-11 06:25:41 +00:00
2019-11-08 08:41:57 +00:00
# define BRICK_COND_ERR(_cond, _fmt, _args...) \
_BRICK_MSG ( ( _cond ) ? SAY_ERROR : SAY_INFO , ( _cond ) , _fmt , # # _args )
2012-10-11 06:25:41 +00:00
# define BRICK_ERR(_fmt, _args...) _BRICK_MSG(SAY_ERROR, true, _fmt, ##_args)
# define BRICK_WRN(_fmt, _args...) _BRICK_MSG(SAY_WARN, false, _fmt, ##_args)
# define BRICK_INF(_fmt, _args...) _BRICK_MSG(SAY_INFO, false, _fmt, ##_args)
2011-08-12 11:09:48 +00:00
/////////////////////////////////////////////////////////////////////////
2011-08-31 11:42:04 +00:00
// limit handling
# include <linux/swap.h>
2012-08-08 09:16:52 +00:00
long long brick_global_memavail = 0 ;
EXPORT_SYMBOL_GPL ( brick_global_memavail ) ;
2011-08-31 11:42:04 +00:00
long long brick_global_memlimit = 0 ;
EXPORT_SYMBOL_GPL ( brick_global_memlimit ) ;
2012-11-15 13:35:02 +00:00
atomic64_t brick_global_block_used = ATOMIC64_INIT ( 0 ) ;
EXPORT_SYMBOL_GPL ( brick_global_block_used ) ;
2011-08-31 11:42:04 +00:00
2012-08-08 09:16:52 +00:00
void get_total_ram ( void )
{
struct sysinfo i = { } ;
si_meminfo ( & i ) ;
//si_swapinfo(&i);
brick_global_memavail = ( long long ) i . totalram * ( PAGE_SIZE / 1024 ) ;
BRICK_INF ( " total RAM = %lld [KiB] \n " , brick_global_memavail ) ;
}
2011-08-31 11:42:04 +00:00
/////////////////////////////////////////////////////////////////////////
2011-08-12 11:09:48 +00:00
// small memory allocation (use this only for len < PAGE_SIZE)
# ifdef BRICK_DEBUG_MEM
2013-01-09 09:35:22 +00:00
static atomic_t phys_mem_alloc = ATOMIC_INIT ( 0 ) ;
static atomic_t mem_redirect_alloc = ATOMIC_INIT ( 0 ) ;
2011-08-12 11:09:48 +00:00
static atomic_t mem_count [ BRICK_DEBUG_MEM ] = { } ;
static atomic_t mem_free [ BRICK_DEBUG_MEM ] = { } ;
static int mem_len [ BRICK_DEBUG_MEM ] = { } ;
2012-11-06 11:09:41 +00:00
# define PLUS_SIZE (6 * sizeof(int))
2011-08-12 11:09:48 +00:00
# else
2012-11-06 11:09:41 +00:00
# define PLUS_SIZE (2 * sizeof(int))
2011-08-12 11:09:48 +00:00
# endif
2012-01-31 15:50:06 +00:00
static inline
void * __brick_mem_alloc ( int len )
{
void * res ;
if ( len > = PAGE_SIZE ) {
2013-01-09 09:35:22 +00:00
# ifdef BRICK_DEBUG_MEM
atomic_inc ( & mem_redirect_alloc ) ;
# endif
2012-01-31 15:50:06 +00:00
res = _brick_block_alloc ( 0 , len , 0 ) ;
} else {
# ifdef CONFIG_MARS_MEM_RETRY
for ( ; ; ) {
res = kmalloc ( len , GFP_BRICK ) ;
if ( likely ( res ) )
break ;
msleep ( 1000 ) ;
}
2013-01-09 09:35:22 +00:00
# ifdef BRICK_DEBUG_MEM
atomic_inc ( & phys_mem_alloc ) ;
# endif
2012-01-31 15:50:06 +00:00
# else
res = kmalloc ( len , GFP_BRICK ) ;
2013-01-09 09:35:22 +00:00
# ifdef BRICK_DEBUG_MEM
if ( res )
atomic_inc ( & phys_mem_alloc ) ;
# endif
2012-01-31 15:50:06 +00:00
# endif
}
return res ;
}
static inline
void __brick_mem_free ( void * data , int len )
{
if ( len > = PAGE_SIZE ) {
_brick_block_free ( data , len , 0 ) ;
2013-01-09 09:35:22 +00:00
# ifdef BRICK_DEBUG_MEM
atomic_dec ( & mem_redirect_alloc ) ;
# endif
2012-01-31 15:50:06 +00:00
} else {
kfree ( data ) ;
2013-01-09 09:35:22 +00:00
# ifdef BRICK_DEBUG_MEM
atomic_dec ( & phys_mem_alloc ) ;
# endif
2012-01-31 15:50:06 +00:00
}
}
2011-08-12 11:09:48 +00:00
void * _brick_mem_alloc ( int len , int line )
{
2011-08-31 11:42:04 +00:00
void * res ;
2012-02-08 11:44:42 +00:00
# ifdef CONFIG_MARS_DEBUG
2011-08-31 11:42:04 +00:00
might_sleep ( ) ;
# endif
2012-01-31 15:50:06 +00:00
res = __brick_mem_alloc ( len + PLUS_SIZE ) ;
2011-08-12 11:09:48 +00:00
if ( likely ( res ) ) {
2012-01-31 15:50:06 +00:00
# ifdef BRICK_DEBUG_MEM
2011-08-12 11:09:48 +00:00
if ( unlikely ( line < 0 ) )
line = 0 ;
else if ( unlikely ( line > = BRICK_DEBUG_MEM ) )
line = BRICK_DEBUG_MEM - 1 ;
2012-11-06 11:09:41 +00:00
INT_ACCESS ( res , 0 * sizeof ( int ) ) = MAGIC_MEM1 ;
2012-01-31 15:50:06 +00:00
INT_ACCESS ( res , 1 * sizeof ( int ) ) = len ;
INT_ACCESS ( res , 2 * sizeof ( int ) ) = line ;
2012-11-06 11:09:41 +00:00
INT_ACCESS ( res , 3 * sizeof ( int ) ) = MAGIC_MEM2 ;
res + = 4 * sizeof ( int ) ;
INT_ACCESS ( res , len + 0 * sizeof ( int ) ) = MAGIC_MEND1 ;
INT_ACCESS ( res , len + 1 * sizeof ( int ) ) = MAGIC_MEND2 ;
2011-08-12 11:09:48 +00:00
atomic_inc ( & mem_count [ line ] ) ;
mem_len [ line ] = len ;
2012-01-31 15:50:06 +00:00
# else
INT_ACCESS ( res , 0 * sizeof ( int ) ) = len ;
2012-11-06 11:09:41 +00:00
res + = PLUS_SIZE ;
2011-08-12 11:09:48 +00:00
# endif
2012-01-31 15:50:06 +00:00
}
2011-08-12 11:09:48 +00:00
return res ;
}
EXPORT_SYMBOL_GPL ( _brick_mem_alloc ) ;
void _brick_mem_free ( void * data , int cline )
{
# ifdef BRICK_DEBUG_MEM
2013-04-17 09:04:52 +00:00
void * test = data - 4 * sizeof ( int ) ;
int magic1 = INT_ACCESS ( test , 0 * sizeof ( int ) ) ;
int len = INT_ACCESS ( test , 1 * sizeof ( int ) ) ;
int line = INT_ACCESS ( test , 2 * sizeof ( int ) ) ;
int magic2 = INT_ACCESS ( test , 3 * sizeof ( int ) ) ;
if ( unlikely ( magic1 ! = MAGIC_MEM1 ) ) {
BRICK_ERR ( " line %d memory corruption: magix1 %08x != %08x, len = %d \n " , cline , magic1 , MAGIC_MEM1 , len ) ;
return ;
}
if ( unlikely ( magic2 ! = MAGIC_MEM2 ) ) {
BRICK_ERR ( " line %d memory corruption: magix2 %08x != %08x, len = %d \n " , cline , magic2 , MAGIC_MEM2 , len ) ;
return ;
}
if ( unlikely ( line < 0 | | line > = BRICK_DEBUG_MEM ) ) {
BRICK_ERR ( " line %d memory corruption: alloc line = %d, len = %d \n " , cline , line , len ) ;
return ;
}
INT_ACCESS ( test , 0 ) = 0xffffffff ;
magic1 = INT_ACCESS ( data , len + 0 * sizeof ( int ) ) ;
if ( unlikely ( magic1 ! = MAGIC_MEND1 ) ) {
BRICK_ERR ( " line %d memory corruption: magix1 %08x != %08x, len = %d \n " , cline , magic1 , MAGIC_MEND1 , len ) ;
return ;
}
magic2 = INT_ACCESS ( data , len + 1 * sizeof ( int ) ) ;
if ( unlikely ( magic2 ! = MAGIC_MEND2 ) ) {
BRICK_ERR ( " line %d memory corruption: magix2 %08x != %08x, len = %d \n " , cline , magic2 , MAGIC_MEND2 , len ) ;
return ;
}
INT_ACCESS ( data , len ) = 0xffffffff ;
atomic_dec ( & mem_count [ line ] ) ;
atomic_inc ( & mem_free [ line ] ) ;
2012-01-31 15:50:06 +00:00
# else
2013-04-17 09:04:52 +00:00
void * test = data - PLUS_SIZE ;
int len = INT_ACCESS ( test , 0 * sizeof ( int ) ) ;
2011-08-12 11:09:48 +00:00
# endif
2013-04-17 09:04:52 +00:00
data = test ;
__brick_mem_free ( data , len + PLUS_SIZE ) ;
2011-08-12 11:09:48 +00:00
}
EXPORT_SYMBOL_GPL ( _brick_mem_free ) ;
/////////////////////////////////////////////////////////////////////////
// string memory allocation
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_DEBUG_MEM_STRONG
# define STRING_CANARY \
" xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx " \
" yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy " \
" zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz " \
" xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx " \
" yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy " \
" zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz " \
" xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx " \
" yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy " \
" zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz " \
" BUILDTAG = " BUILDTAG \
" BUILDHOST = " BUILDHOST \
" BUILDDATE = " BUILDDATE \
" FILE = " __FILE__ \
" VERSION = " __VERSION__ \
" xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx STRING_error xxx \n "
# define STRING_PLUS (sizeof(int) * 3 + sizeof(STRING_CANARY))
# elif defined(BRICK_DEBUG_MEM)
# define STRING_PLUS (sizeof(int) * 4)
# else
# define STRING_PLUS 0
# endif
2011-08-12 11:09:48 +00:00
# ifdef BRICK_DEBUG_MEM
2013-01-09 09:35:22 +00:00
static atomic_t phys_string_alloc = ATOMIC_INIT ( 0 ) ;
2011-08-12 11:09:48 +00:00
static atomic_t string_count [ BRICK_DEBUG_MEM ] = { } ;
static atomic_t string_free [ BRICK_DEBUG_MEM ] = { } ;
# endif
2011-08-25 10:16:32 +00:00
char * _brick_string_alloc ( int len , int line )
2011-08-12 11:09:48 +00:00
{
2011-08-25 10:16:32 +00:00
char * res ;
2011-10-12 14:57:53 +00:00
2012-02-08 11:44:42 +00:00
# ifdef CONFIG_MARS_DEBUG
2011-08-31 11:42:04 +00:00
might_sleep ( ) ;
2013-12-02 09:37:06 +00:00
if ( unlikely ( len > PAGE_SIZE ) ) {
BRICK_WRN ( " line = %d string too long: len = %d \n " , line , len ) ;
}
2011-08-31 11:42:04 +00:00
# endif
2011-10-12 14:57:53 +00:00
if ( len < = 0 ) {
2011-08-25 10:16:32 +00:00
len = BRICK_STRING_LEN ;
2011-10-12 14:57:53 +00:00
}
2012-01-31 15:50:06 +00:00
# ifdef CONFIG_MARS_MEM_RETRY
for ( ; ; ) {
# endif
2013-12-02 09:37:06 +00:00
res = kzalloc ( len + STRING_PLUS , GFP_BRICK ) ;
2012-01-31 15:50:06 +00:00
# ifdef CONFIG_MARS_MEM_RETRY
if ( likely ( res ) )
break ;
msleep ( 1000 ) ;
}
2011-10-12 14:57:53 +00:00
# endif
2011-08-12 11:09:48 +00:00
# ifdef BRICK_DEBUG_MEM
if ( likely ( res ) ) {
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_DEBUG_MEM_STRONG
memset ( res + 1 , ' ? ' , len - 1 ) ;
# endif
2013-01-09 09:35:22 +00:00
atomic_inc ( & phys_string_alloc ) ;
2011-08-12 11:09:48 +00:00
if ( unlikely ( line < 0 ) )
line = 0 ;
else if ( unlikely ( line > = BRICK_DEBUG_MEM ) )
line = BRICK_DEBUG_MEM - 1 ;
2011-10-12 14:57:53 +00:00
INT_ACCESS ( res , 0 ) = MAGIC_STR ;
INT_ACCESS ( res , sizeof ( int ) ) = len ;
INT_ACCESS ( res , sizeof ( int ) * 2 ) = line ;
res + = sizeof ( int ) * 3 ;
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_DEBUG_MEM_STRONG
strcpy ( res + len , STRING_CANARY ) ;
# else
INT_ACCESS ( res , len ) = MAGIC_SEND ;
# endif
atomic_inc ( & string_count [ line ] ) ;
2011-08-12 11:09:48 +00:00
}
# endif
return res ;
}
EXPORT_SYMBOL_GPL ( _brick_string_alloc ) ;
void _brick_string_free ( const char * data , int cline )
{
# ifdef BRICK_DEBUG_MEM
2013-04-17 09:04:52 +00:00
int magic ;
int len ;
int line ;
2013-12-02 09:37:06 +00:00
char * orig = ( void * ) data ;
2013-04-17 09:04:52 +00:00
data - = sizeof ( int ) * 3 ;
magic = INT_ACCESS ( data , 0 ) ;
if ( unlikely ( magic ! = MAGIC_STR ) ) {
BRICK_ERR ( " cline %d stringmem corruption: magix %08x != %08x \n " , cline , magic , MAGIC_STR ) ;
return ;
2011-08-12 11:09:48 +00:00
}
2013-04-17 09:04:52 +00:00
len = INT_ACCESS ( data , sizeof ( int ) ) ;
line = INT_ACCESS ( data , sizeof ( int ) * 2 ) ;
2013-12-02 09:37:06 +00:00
if ( unlikely ( len < = 0 ) ) {
BRICK_ERR ( " cline %d stringmem corruption: line = %d len = %d \n " , cline , line , len ) ;
return ;
}
if ( unlikely ( len > PAGE_SIZE ) ) {
BRICK_ERR ( " cline %d string too long: line = %d len = %d string='%s' \n " , cline , line , len , orig ) ;
}
2013-04-17 09:04:52 +00:00
if ( unlikely ( line < 0 | | line > = BRICK_DEBUG_MEM ) ) {
BRICK_ERR ( " cline %d stringmem corruption: line = %d (len = %d) \n " , cline , line , len ) ;
return ;
}
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_DEBUG_MEM_STRONG
if ( unlikely ( strcmp ( orig + len , STRING_CANARY ) ) ) {
BRICK_ERR ( " cline %d stringmem corruption: bad canary '%s', line = %d len = %d \n " ,
cline , STRING_CANARY , line , len ) ;
return ;
}
orig [ len ] - - ;
memset ( orig , ' ! ' , len ) ;
# else
magic = INT_ACCESS ( orig , len ) ;
2013-04-17 09:04:52 +00:00
if ( unlikely ( magic ! = MAGIC_SEND ) ) {
2013-12-02 09:37:06 +00:00
BRICK_ERR ( " cline %d stringmem corruption: end_magix %08x != %08x, line = %d len = %d \n " ,
cline , magic , MAGIC_SEND , line , len ) ;
2013-04-17 09:04:52 +00:00
return ;
}
2013-12-02 09:37:06 +00:00
INT_ACCESS ( orig , len ) = 0xffffffff ;
# endif
2013-04-17 09:04:52 +00:00
atomic_dec ( & string_count [ line ] ) ;
atomic_inc ( & string_free [ line ] ) ;
atomic_dec ( & phys_string_alloc ) ;
# endif
kfree ( data ) ;
2011-08-12 11:09:48 +00:00
}
EXPORT_SYMBOL_GPL ( _brick_string_free ) ;
/////////////////////////////////////////////////////////////////////////
// block memory allocation
2011-11-14 17:52:05 +00:00
static
int len2order ( int len )
{
int order = 0 ;
2014-04-22 09:34:40 +00:00
if ( unlikely ( len < = 0 ) ) {
BRICK_ERR ( " trying to use %d bytes \n " , len ) ;
return 0 ;
}
2011-11-14 17:52:05 +00:00
while ( ( PAGE_SIZE < < order ) < len )
order + + ;
2014-04-22 09:34:40 +00:00
if ( unlikely ( order > BRICK_MAX_ORDER ) ) {
BRICK_ERR ( " trying to use %d bytes (oder = %d, max = %d) \n " , len , order , BRICK_MAX_ORDER ) ;
return BRICK_MAX_ORDER ;
2011-11-14 17:52:05 +00:00
}
return order ;
}
2013-09-19 07:24:49 +00:00
# ifdef CONFIG_MARS_MEM_PREALLOC
static atomic_t _alloc_count [ BRICK_MAX_ORDER + 1 ] = { } ;
int brick_mem_alloc_count [ BRICK_MAX_ORDER + 1 ] = { } ;
EXPORT_SYMBOL_GPL ( brick_mem_alloc_count ) ;
int brick_mem_alloc_max [ BRICK_MAX_ORDER + 1 ] = { } ;
EXPORT_SYMBOL_GPL ( brick_mem_alloc_max ) ;
int brick_mem_freelist_max [ BRICK_MAX_ORDER + 1 ] = { } ;
EXPORT_SYMBOL_GPL ( brick_mem_freelist_max ) ;
# endif
2011-11-14 17:52:05 +00:00
# ifdef BRICK_DEBUG_MEM
2013-01-09 09:35:22 +00:00
static atomic_t phys_block_alloc = ATOMIC_INIT ( 0 ) ;
2011-11-14 17:52:05 +00:00
// indexed by line
static atomic_t block_count [ BRICK_DEBUG_MEM ] = { } ;
static atomic_t block_free [ BRICK_DEBUG_MEM ] = { } ;
static int block_len [ BRICK_DEBUG_MEM ] = { } ;
// indexed by order
static atomic_t op_count [ BRICK_MAX_ORDER + 1 ] = { } ;
static atomic_t raw_count [ BRICK_MAX_ORDER + 1 ] = { } ;
2012-01-23 10:23:41 +00:00
static int alloc_line [ BRICK_MAX_ORDER + 1 ] = { } ;
2013-01-09 09:35:22 +00:00
static int alloc_len [ BRICK_MAX_ORDER + 1 ] = { } ;
2011-11-14 17:52:05 +00:00
# endif
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_DEBUG_MEM_STRONG
# define MAX_INFO_LISTS 1024
# define INFO_LIST_HASH(addr) ((unsigned long)(addr) / (PAGE_SIZE * 2) % MAX_INFO_LISTS)
struct mem_block_info {
struct list_head inf_head ;
void * inf_data ;
int inf_len ;
int inf_line ;
bool inf_used ;
} ;
static struct list_head inf_anchor [ MAX_INFO_LISTS ] ;
static rwlock_t inf_lock [ MAX_INFO_LISTS ] ;
static
void _new_block_info ( void * data , int len , int cline )
{
struct mem_block_info * inf ;
int hash ;
2017-05-16 07:59:02 +00:00
unsigned long flags ;
2013-12-02 09:37:06 +00:00
for ( ; ; ) {
inf = kmalloc ( sizeof ( struct mem_block_info ) , GFP_BRICK ) ;
if ( likely ( inf ) )
break ;
msleep ( 1000 ) ;
}
inf - > inf_data = data ;
inf - > inf_len = len ;
inf - > inf_line = cline ;
inf - > inf_used = true ;
hash = INFO_LIST_HASH ( data ) ;
2017-05-16 07:59:02 +00:00
write_lock_irqsave ( & inf_lock [ hash ] , flags ) ;
2013-12-02 09:37:06 +00:00
list_add ( & inf - > inf_head , & inf_anchor [ hash ] ) ;
2017-05-16 07:59:02 +00:00
write_unlock_irqrestore ( & inf_lock [ hash ] , flags ) ;
2013-12-02 09:37:06 +00:00
}
static
struct mem_block_info * _find_block_info ( void * data , bool remove )
{
struct mem_block_info * res = NULL ;
struct list_head * tmp ;
int hash = INFO_LIST_HASH ( data ) ;
2017-05-16 07:59:02 +00:00
unsigned long flags ;
2013-12-02 09:37:06 +00:00
if ( remove )
2017-05-16 07:59:02 +00:00
write_lock_irqsave ( & inf_lock [ hash ] , flags ) ;
2013-12-02 09:37:06 +00:00
else
2017-05-16 07:59:02 +00:00
read_lock_irqsave ( & inf_lock [ hash ] , flags ) ;
2013-12-02 09:37:06 +00:00
for ( tmp = inf_anchor [ hash ] . next ; tmp ! = & inf_anchor [ hash ] ; tmp = tmp - > next ) {
struct mem_block_info * inf = container_of ( tmp , struct mem_block_info , inf_head ) ;
if ( inf - > inf_data ! = data )
continue ;
if ( remove )
list_del_init ( tmp ) ;
res = inf ;
break ;
}
if ( remove )
2017-05-16 07:59:02 +00:00
write_unlock_irqrestore ( & inf_lock [ hash ] , flags ) ;
2013-12-02 09:37:06 +00:00
else
2017-05-16 07:59:02 +00:00
read_unlock_irqrestore ( & inf_lock [ hash ] , flags ) ;
2013-12-02 09:37:06 +00:00
return res ;
}
# endif // CONFIG_MARS_DEBUG_MEM_STRONG
2011-11-14 17:52:05 +00:00
static inline
2013-12-02 09:37:06 +00:00
void * __brick_block_alloc ( gfp_t gfp , int order , int cline )
2011-11-14 17:52:05 +00:00
{
2012-01-31 15:50:06 +00:00
void * res ;
# ifdef CONFIG_MARS_MEM_RETRY
for ( ; ; ) {
# endif
2011-11-14 17:52:05 +00:00
# ifdef USE_KERNEL_PAGES
2012-01-31 15:50:06 +00:00
res = ( void * ) __get_free_pages ( gfp , order ) ;
2011-11-14 17:52:05 +00:00
# else
2012-01-31 15:50:06 +00:00
res = __vmalloc ( PAGE_SIZE < < order , gfp , PAGE_KERNEL_IO ) ;
2011-11-14 17:52:05 +00:00
# endif
2012-01-31 15:50:06 +00:00
# ifdef CONFIG_MARS_MEM_RETRY
if ( likely ( res ) )
break ;
msleep ( 1000 ) ;
}
# endif
2012-11-15 13:35:02 +00:00
2013-01-09 09:35:22 +00:00
if ( likely ( res ) ) {
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_DEBUG_MEM_STRONG
_new_block_info ( res , PAGE_SIZE < < order , cline ) ;
# endif
2013-01-09 09:35:22 +00:00
# ifdef BRICK_DEBUG_MEM
atomic_inc ( & phys_block_alloc ) ;
atomic_inc ( & raw_count [ order ] ) ;
# endif
atomic64_add ( ( PAGE_SIZE / 1024 ) < < order , & brick_global_block_used ) ;
}
2012-11-15 13:35:02 +00:00
2012-01-31 15:50:06 +00:00
return res ;
2011-11-14 17:52:05 +00:00
}
2011-08-12 11:09:48 +00:00
2011-11-14 17:52:05 +00:00
static inline
2013-12-02 09:37:06 +00:00
void __brick_block_free ( void * data , int order , int cline )
2011-11-14 17:52:05 +00:00
{
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_DEBUG_MEM_STRONG
struct mem_block_info * inf = _find_block_info ( data , true ) ;
if ( likely ( inf ) ) {
int inf_len = inf - > inf_len ;
int inf_line = inf - > inf_line ;
kfree ( inf ) ;
if ( unlikely ( inf_len ! = ( PAGE_SIZE < < order ) ) ) {
BRICK_ERR ( " line %d: address %p: bad freeing size %d (correct should be %d, previous line = %d) \n " , cline , data , ( int ) ( PAGE_SIZE < < order ) , inf_len , inf_line ) ;
goto err ;
}
} else {
BRICK_ERR ( " line %d: trying to free non-existent address %p (order = %d) \n " , cline , data , order ) ;
goto err ;
}
# endif
2011-11-14 17:52:05 +00:00
# ifdef USE_KERNEL_PAGES
__free_pages ( virt_to_page ( ( unsigned long ) data ) , order ) ;
# else
vfree ( data ) ;
# endif
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_DEBUG_MEM_STRONG
err :
# endif
2011-11-14 17:52:05 +00:00
# ifdef BRICK_DEBUG_MEM
2013-01-09 09:35:22 +00:00
atomic_dec ( & phys_block_alloc ) ;
2011-11-14 17:52:05 +00:00
atomic_dec ( & raw_count [ order ] ) ;
2011-10-24 16:44:36 +00:00
# endif
2012-11-15 13:35:02 +00:00
atomic64_sub ( ( PAGE_SIZE / 1024 ) < < order , & brick_global_block_used ) ;
2011-11-14 17:52:05 +00:00
}
2013-09-19 07:24:49 +00:00
# ifdef CONFIG_MARS_MEM_PREALLOC
int brick_allow_freelist = 1 ;
2011-11-14 17:52:05 +00:00
EXPORT_SYMBOL_GPL ( brick_allow_freelist ) ;
2013-09-19 07:24:49 +00:00
int brick_pre_reserve [ BRICK_MAX_ORDER + 1 ] = { } ;
EXPORT_SYMBOL_GPL ( brick_pre_reserve ) ;
2011-11-14 17:52:05 +00:00
/* Note: we have no separate lists per CPU.
* This should not hurt because the freelists are only used
* for higher - order pages which should be rather low - frequency .
*/
static spinlock_t freelist_lock [ BRICK_MAX_ORDER + 1 ] ;
static void * brick_freelist [ BRICK_MAX_ORDER + 1 ] = { } ;
static atomic_t freelist_count [ BRICK_MAX_ORDER + 1 ] = { } ;
static
2013-12-02 09:37:06 +00:00
void * _get_free ( int order , int cline )
2011-11-14 17:52:05 +00:00
{
void * data ;
unsigned long flags ;
traced_lock ( & freelist_lock [ order ] , flags ) ;
data = brick_freelist [ order ] ;
if ( likely ( data ) ) {
void * next = * ( void * * ) data ;
# ifdef BRICK_DEBUG_MEM // check for corruptions
2013-01-21 15:15:33 +00:00
long pattern = * ( ( ( long * ) data ) + 1 ) ;
void * copy = * ( ( ( void * * ) data ) + 2 ) ;
if ( unlikely ( pattern ! = 0xf0f0f0f0f0f0f0f0 | | next ! = copy ) ) { // found a corruption
2011-11-14 17:52:05 +00:00
// prevent further trouble by leaving a memleak
brick_freelist [ order ] = NULL ;
traced_unlock ( & freelist_lock [ order ] , flags ) ;
2013-12-02 09:37:06 +00:00
BRICK_ERR ( " line %d:freelist corruption at %p (pattern = %lx next %p != %p, murdered = %d), order = %d \n " ,
cline , data , pattern , next , copy , atomic_read ( & freelist_count [ order ] ) , order ) ;
2011-11-14 17:52:05 +00:00
return NULL ;
}
# endif
brick_freelist [ order ] = next ;
atomic_dec ( & freelist_count [ order ] ) ;
}
traced_unlock ( & freelist_lock [ order ] , flags ) ;
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_DEBUG_MEM_STRONG
if ( data ) {
struct mem_block_info * inf = _find_block_info ( data , false ) ;
if ( likely ( inf ) ) {
if ( unlikely ( inf - > inf_len ! = ( PAGE_SIZE < < order ) ) ) {
BRICK_ERR ( " line %d: address %p: bad freelist size %d (correct should be %d, previous line = %d) \n " ,
cline , data , ( int ) ( PAGE_SIZE < < order ) , inf - > inf_len , inf - > inf_line ) ;
}
inf - > inf_line = cline ;
inf - > inf_used = true ;
} else {
BRICK_ERR ( " line %d: freelist address %p is invalid (order = %d) \n " , cline , data , order ) ;
}
}
# endif
2011-11-14 17:52:05 +00:00
return data ;
}
static
void _put_free ( void * data , int order )
{
void * next ;
unsigned long flags ;
2013-01-21 15:15:33 +00:00
# ifdef BRICK_DEBUG_MEM // fill with pattern
memset ( data , 0xf0 , PAGE_SIZE < < order ) ;
# endif
2011-11-14 17:52:05 +00:00
traced_lock ( & freelist_lock [ order ] , flags ) ;
next = brick_freelist [ order ] ;
* ( void * * ) data = next ;
# ifdef BRICK_DEBUG_MEM // insert redundant copy for checking
2013-01-21 15:15:33 +00:00
* ( ( ( void * * ) data ) + 2 ) = next ;
2011-11-14 17:52:05 +00:00
# endif
brick_freelist [ order ] = data ;
traced_unlock ( & freelist_lock [ order ] , flags ) ;
atomic_inc ( & freelist_count [ order ] ) ;
}
static
void _free_all ( void )
{
int order ;
for ( order = BRICK_MAX_ORDER ; order > = 0 ; order - - ) {
for ( ; ; ) {
2013-12-02 09:37:06 +00:00
void * data = _get_free ( order , __LINE__ ) ;
2011-11-14 17:52:05 +00:00
if ( ! data )
break ;
2013-12-02 09:37:06 +00:00
__brick_block_free ( data , order , __LINE__ ) ;
2011-11-14 17:52:05 +00:00
}
}
}
2013-09-19 07:24:49 +00:00
int brick_mem_reserve ( void )
2011-11-14 17:52:05 +00:00
{
int order ;
int status = 0 ;
for ( order = BRICK_MAX_ORDER ; order > = 0 ; order - - ) {
2013-09-19 07:24:49 +00:00
int max = brick_pre_reserve [ order ] ;
2011-11-14 17:52:05 +00:00
int i ;
2013-09-19 07:24:49 +00:00
brick_mem_freelist_max [ order ] + = max ;
BRICK_INF ( " preallocating %d at order %d (new maxlevel = %d) \n " , max , order , brick_mem_freelist_max [ order ] ) ;
2011-11-14 17:52:05 +00:00
2013-09-19 07:24:49 +00:00
max = brick_mem_freelist_max [ order ] - atomic_read ( & freelist_count [ order ] ) ;
2011-11-14 17:52:05 +00:00
if ( max > = 0 ) {
for ( i = 0 ; i < max ; i + + ) {
2013-12-02 09:37:06 +00:00
void * data = __brick_block_alloc ( GFP_KERNEL , order , __LINE__ ) ;
2011-11-14 17:52:05 +00:00
if ( likely ( data ) ) {
_put_free ( data , order ) ;
} else {
status = - ENOMEM ;
}
}
} else {
for ( i = 0 ; i < - max ; i + + ) {
2013-12-02 09:37:06 +00:00
void * data = _get_free ( order , __LINE__ ) ;
2011-11-14 17:52:05 +00:00
if ( likely ( data ) ) {
2013-12-02 09:37:06 +00:00
__brick_block_free ( data , order , __LINE__ ) ;
2011-11-14 17:52:05 +00:00
}
}
}
}
return status ;
}
# else
int brick_mem_reserve ( struct mem_reservation * r )
{
BRICK_INF ( " preallocation is not compiled in \n " ) ;
return 0 ;
}
# endif
EXPORT_SYMBOL_GPL ( brick_mem_reserve ) ;
2011-10-24 16:44:36 +00:00
void * _brick_block_alloc ( loff_t pos , int len , int line )
2011-08-12 11:09:48 +00:00
{
2011-10-24 16:44:36 +00:00
void * data ;
2011-11-14 17:52:05 +00:00
int count ;
2013-09-19 07:24:49 +00:00
# ifdef BRICK_DEBUG_MEM
2013-01-21 16:59:29 +00:00
# ifdef BRICK_DEBUG_ORDER0
const int plus0 = PAGE_SIZE ;
# else
const int plus0 = 0 ;
# endif
const int plus = len < = PAGE_SIZE ? plus0 : PAGE_SIZE * 2 ;
2011-11-14 17:52:05 +00:00
# else
const int plus = 0 ;
# endif
int order = len2order ( len + plus ) ;
if ( unlikely ( order < 0 ) ) {
2011-08-12 11:09:48 +00:00
BRICK_ERR ( " trying to allocate %d bytes (max = %d) \n " , len , ( int ) ( PAGE_SIZE < < order ) ) ;
2011-10-24 16:44:36 +00:00
return NULL ;
2011-10-24 09:19:08 +00:00
}
2011-11-14 17:52:05 +00:00
2012-02-08 11:44:42 +00:00
# ifdef CONFIG_MARS_DEBUG
2011-10-24 16:44:36 +00:00
might_sleep ( ) ;
2011-08-31 11:42:04 +00:00
# endif
2011-11-14 17:52:05 +00:00
2013-09-19 07:24:49 +00:00
# ifdef CONFIG_MARS_MEM_PREALLOC
count = atomic_add_return ( 1 , & _alloc_count [ order ] ) ;
brick_mem_alloc_count [ order ] = count ;
if ( count > brick_mem_alloc_max [ order ] )
brick_mem_alloc_max [ order ] = count ;
# endif
2011-11-14 17:52:05 +00:00
# ifdef BRICK_DEBUG_MEM
atomic_inc ( & op_count [ order ] ) ;
2011-11-16 08:48:07 +00:00
// statistics
2012-01-23 10:23:41 +00:00
alloc_line [ order ] = line ;
2013-01-09 09:35:22 +00:00
alloc_len [ order ] = len ;
2013-09-19 07:24:49 +00:00
# endif
2011-11-16 08:48:07 +00:00
2013-09-19 07:24:49 +00:00
# ifdef CONFIG_MARS_MEM_PREALLOC
2011-11-16 08:48:07 +00:00
/* Dynamic increase of limits, in order to reduce
* fragmentation on higher - order pages .
* This comes on cost of higher memory usage .
*/
2013-09-19 07:24:49 +00:00
if ( order > 0 & & count > brick_mem_freelist_max [ order ] )
brick_mem_freelist_max [ order ] = count ;
2011-08-12 11:09:48 +00:00
# endif
2011-11-14 17:52:05 +00:00
# ifdef CONFIG_MARS_MEM_PREALLOC
2013-12-02 09:37:06 +00:00
data = _get_free ( order , line ) ;
2011-11-14 17:52:05 +00:00
if ( ! data )
2011-10-24 09:19:08 +00:00
# endif
2013-12-02 09:37:06 +00:00
data = __brick_block_alloc ( GFP_BRICK , order , line ) ;
2011-11-14 17:52:05 +00:00
# ifdef BRICK_DEBUG_MEM
if ( likely ( data ) & & order > 0 ) {
if ( unlikely ( line < 0 ) )
line = 0 ;
else if ( unlikely ( line > = BRICK_DEBUG_MEM ) )
line = BRICK_DEBUG_MEM - 1 ;
atomic_inc ( & block_count [ line ] ) ;
block_len [ line ] = len ;
2013-01-21 16:59:29 +00:00
if ( order > 1 ) {
INT_ACCESS ( data , 0 * sizeof ( int ) ) = MAGIC_BLOCK ;
INT_ACCESS ( data , 1 * sizeof ( int ) ) = line ;
INT_ACCESS ( data , 2 * sizeof ( int ) ) = len ;
data + = PAGE_SIZE ;
INT_ACCESS ( data , - 1 * sizeof ( int ) ) = MAGIC_BLOCK ;
INT_ACCESS ( data , len ) = MAGIC_BEND ;
} else if ( order = = 1 ) {
INT_ACCESS ( data , PAGE_SIZE + 0 * sizeof ( int ) ) = MAGIC_BLOCK ;
INT_ACCESS ( data , PAGE_SIZE + 1 * sizeof ( int ) ) = line ;
INT_ACCESS ( data , PAGE_SIZE + 2 * sizeof ( int ) ) = len ;
}
2011-08-12 11:09:48 +00:00
}
2011-11-14 17:52:05 +00:00
# endif
2011-08-12 11:09:48 +00:00
return data ;
}
EXPORT_SYMBOL_GPL ( _brick_block_alloc ) ;
2011-11-14 17:52:05 +00:00
void _brick_block_free ( void * data , int len , int cline )
2011-08-12 11:09:48 +00:00
{
2011-11-14 17:52:05 +00:00
int order ;
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_DEBUG_MEM_STRONG
struct mem_block_info * inf ;
char * real_data ;
# endif
2011-11-14 17:52:05 +00:00
# ifdef BRICK_DEBUG_MEM
2013-12-02 09:37:06 +00:00
int prev_line = 0 ;
2013-01-21 16:59:29 +00:00
# ifdef BRICK_DEBUG_ORDER0
const int plus0 = PAGE_SIZE ;
# else
const int plus0 = 0 ;
# endif
const int plus = len < = PAGE_SIZE ? plus0 : PAGE_SIZE * 2 ;
2011-11-14 17:52:05 +00:00
# else
const int plus = 0 ;
2011-10-24 16:44:36 +00:00
# endif
2013-01-21 16:59:29 +00:00
2011-11-14 17:52:05 +00:00
order = len2order ( len + plus ) ;
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_DEBUG_MEM_STRONG
real_data = data ;
if ( order > 1 )
real_data - = PAGE_SIZE ;
inf = _find_block_info ( real_data , false ) ;
if ( likely ( inf ) ) {
prev_line = inf - > inf_line ;
if ( unlikely ( inf - > inf_len ! = ( PAGE_SIZE < < order ) ) ) {
BRICK_ERR ( " line %d: address %p: bad freeing size %d (correct should be %d, previous line = %d) \n " ,
cline , data , ( int ) ( PAGE_SIZE < < order ) , inf - > inf_len , prev_line ) ;
return ;
}
if ( unlikely ( ! inf - > inf_used ) ) {
BRICK_ERR ( " line %d: address %p: double freeing (previous line = %d) \n " , cline , data , prev_line ) ;
return ;
}
inf - > inf_line = cline ;
inf - > inf_used = false ;
} else {
BRICK_ERR ( " line %d: trying to free non-existent address %p (order = %d) \n " , cline , data , order ) ;
return ;
}
# endif
2011-11-14 17:52:05 +00:00
# ifdef BRICK_DEBUG_MEM
2013-01-21 16:59:29 +00:00
if ( order > 1 ) {
2011-11-14 17:52:05 +00:00
void * test = data - PAGE_SIZE ;
int magic = INT_ACCESS ( test , 0 ) ;
int line = INT_ACCESS ( test , sizeof ( int ) ) ;
int oldlen = INT_ACCESS ( test , sizeof ( int ) * 2 ) ;
2013-01-21 16:59:29 +00:00
int magic1 = INT_ACCESS ( data , - 1 * sizeof ( int ) ) ;
2011-11-14 17:52:05 +00:00
int magic2 ;
2013-01-21 16:59:29 +00:00
if ( unlikely ( magic1 ! = MAGIC_BLOCK ) ) {
2013-12-02 09:37:06 +00:00
BRICK_ERR ( " line %d memory corruption: %p magix1 %08x != %08x (previous line = %d) \n " , cline , data , magic1 , MAGIC_BLOCK , prev_line ) ;
2013-01-21 16:59:29 +00:00
return ;
}
2011-11-14 17:52:05 +00:00
if ( unlikely ( magic ! = MAGIC_BLOCK ) ) {
2013-12-02 09:37:06 +00:00
BRICK_ERR ( " line %d memory corruption: %p magix %08x != %08x (previous line = %d) \n " , cline , data , magic , MAGIC_BLOCK , prev_line ) ;
2011-11-14 17:52:05 +00:00
return ;
}
if ( unlikely ( line < 0 | | line > = BRICK_DEBUG_MEM ) ) {
2013-12-02 09:37:06 +00:00
BRICK_ERR ( " line %d memory corruption %p: alloc line = %d (previous line = %d) \n " , cline , data , line , prev_line ) ;
2011-11-14 17:52:05 +00:00
return ;
2011-10-24 16:44:36 +00:00
}
2011-11-14 17:52:05 +00:00
if ( unlikely ( oldlen ! = len ) ) {
2013-12-02 09:37:06 +00:00
BRICK_ERR ( " line %d memory corruption %p: len != oldlen (%d != %d, previous line = %d)) \n " , cline , data , len , oldlen , prev_line ) ;
2011-11-14 17:52:05 +00:00
return ;
}
magic2 = INT_ACCESS ( data , len ) ;
if ( unlikely ( magic2 ! = MAGIC_BEND ) ) {
2013-12-02 09:37:06 +00:00
BRICK_ERR ( " line %d memory corruption %p: magix %08x != %08x (previous line = %d) \n " , cline , data , magic , MAGIC_BEND , prev_line ) ;
2011-11-14 17:52:05 +00:00
return ;
}
INT_ACCESS ( test , 0 ) = 0xffffffff ;
INT_ACCESS ( data , len ) = 0xffffffff ;
2013-01-21 16:59:29 +00:00
data = test ;
atomic_dec ( & block_count [ line ] ) ;
atomic_inc ( & block_free [ line ] ) ;
} else if ( order = = 1 ) {
void * test = data + PAGE_SIZE ;
int magic = INT_ACCESS ( test , 0 * sizeof ( int ) ) ;
int line = INT_ACCESS ( test , 1 * sizeof ( int ) ) ;
int oldlen = INT_ACCESS ( test , 2 * sizeof ( int ) ) ;
if ( unlikely ( magic ! = MAGIC_BLOCK ) ) {
2013-12-02 09:37:06 +00:00
BRICK_ERR ( " line %d memory corruption %p: magix %08x != %08x (previous line = %d) \n " , cline , data , magic , MAGIC_BLOCK , prev_line ) ;
2013-01-21 16:59:29 +00:00
return ;
}
if ( unlikely ( line < 0 | | line > = BRICK_DEBUG_MEM ) ) {
2013-12-02 09:37:06 +00:00
BRICK_ERR ( " line %d memory corruption %p: alloc line = %d (previous line = %d) \n " , cline , data , line , prev_line ) ;
2013-01-21 16:59:29 +00:00
return ;
}
if ( unlikely ( oldlen ! = len ) ) {
2013-12-02 09:37:06 +00:00
BRICK_ERR ( " line %d memory corruption %p: len != oldlen (%d != %d, previous line = %d)) \n " , cline , data , len , oldlen , prev_line ) ;
2013-01-21 16:59:29 +00:00
return ;
}
2011-11-14 17:52:05 +00:00
atomic_dec ( & block_count [ line ] ) ;
atomic_inc ( & block_free [ line ] ) ;
}
# endif
# ifdef CONFIG_MARS_MEM_PREALLOC
2013-09-19 07:24:49 +00:00
if ( order > 0 & & brick_allow_freelist & & atomic_read ( & freelist_count [ order ] ) < = brick_mem_freelist_max [ order ] ) {
2011-11-14 17:52:05 +00:00
_put_free ( data , order ) ;
2011-08-12 11:09:48 +00:00
} else
# endif
2013-12-02 09:37:06 +00:00
__brick_block_free ( data , order , cline ) ;
2013-09-19 07:24:49 +00:00
# ifdef CONFIG_MARS_MEM_PREALLOC
brick_mem_alloc_count [ order ] = atomic_dec_return ( & _alloc_count [ order ] ) ;
2011-08-12 11:09:48 +00:00
# endif
}
2011-11-14 17:52:05 +00:00
EXPORT_SYMBOL_GPL ( _brick_block_free ) ;
2011-08-12 11:09:48 +00:00
struct page * brick_iomap ( void * data , int * offset , int * len )
{
int _offset = ( ( unsigned long ) data ) & ( PAGE_SIZE - 1 ) ;
struct page * page ;
* offset = _offset ;
if ( * len > PAGE_SIZE - _offset ) {
* len = PAGE_SIZE - _offset ;
}
if ( is_vmalloc_addr ( data ) ) {
page = vmalloc_to_page ( data ) ;
} else {
page = virt_to_page ( data ) ;
}
return page ;
}
EXPORT_SYMBOL_GPL ( brick_iomap ) ;
/////////////////////////////////////////////////////////////////////////
// module
2014-03-21 08:38:43 +00:00
void brick_mem_statistics ( bool final )
2011-08-12 11:09:48 +00:00
{
# ifdef BRICK_DEBUG_MEM
int i ;
int count = 0 ;
int places = 0 ;
2011-11-14 17:52:05 +00:00
BRICK_INF ( " ======== page allocation: \n " ) ;
# ifdef CONFIG_MARS_MEM_PREALLOC
for ( i = 0 ; i < = BRICK_MAX_ORDER ; i + + ) {
2012-02-12 11:19:57 +00:00
BRICK_INF ( " pages order = %2d "
" operations = %9d "
" freelist_count = %4d / %3d "
" raw_count = %5d "
" alloc_count = %5d "
2013-01-09 09:35:22 +00:00
" alloc_len = %5d "
2012-02-12 11:19:57 +00:00
" line = %5d "
" max_count = %5d \n " ,
i ,
atomic_read ( & op_count [ i ] ) ,
atomic_read ( & freelist_count [ i ] ) ,
2013-09-19 07:24:49 +00:00
brick_mem_freelist_max [ i ] ,
2012-02-12 11:19:57 +00:00
atomic_read ( & raw_count [ i ] ) ,
2013-09-19 07:24:49 +00:00
brick_mem_alloc_count [ i ] ,
2013-01-09 09:35:22 +00:00
alloc_len [ i ] ,
alloc_line [ i ] ,
2013-09-19 07:24:49 +00:00
brick_mem_alloc_max [ i ] ) ;
2011-11-14 17:52:05 +00:00
}
# endif
for ( i = 0 ; i < BRICK_DEBUG_MEM ; i + + ) {
int val = atomic_read ( & block_count [ i ] ) ;
if ( val ) {
count + = val ;
places + + ;
2012-02-12 11:19:57 +00:00
BRICK_INF ( " line %4d: "
" %6d allocated "
" (last size = %4d, freed = %6d) \n " ,
i ,
val ,
block_len [ i ] ,
atomic_read ( & block_free [ i ] ) ) ;
2011-11-14 17:52:05 +00:00
}
}
2019-11-08 08:41:57 +00:00
BRICK_COND_ERR ( final & & count ,
" ======== %d block allocations in %d places (phys=%d) \n " ,
count , places , atomic_read ( & phys_block_alloc ) ) ;
2011-11-14 17:52:05 +00:00
count = places = 0 ;
2011-08-12 11:09:48 +00:00
for ( i = 0 ; i < BRICK_DEBUG_MEM ; i + + ) {
int val = atomic_read ( & mem_count [ i ] ) ;
if ( val ) {
count + = val ;
places + + ;
2012-02-12 11:19:57 +00:00
BRICK_INF ( " line %4d: "
" %6d allocated "
" (last size = %4d, freed = %6d) \n " ,
i ,
val ,
mem_len [ i ] ,
atomic_read ( & mem_free [ i ] ) ) ;
2011-08-12 11:09:48 +00:00
}
}
2019-11-08 08:41:57 +00:00
BRICK_COND_ERR ( final & & count ,
" ======== %d memory allocations in %d places (phys=%d,redirect=%d) \n " ,
count , places ,
atomic_read ( & phys_mem_alloc ) , atomic_read ( & mem_redirect_alloc ) ) ;
2011-08-12 11:09:48 +00:00
count = places = 0 ;
for ( i = 0 ; i < BRICK_DEBUG_MEM ; i + + ) {
int val = atomic_read ( & string_count [ i ] ) ;
if ( val ) {
count + = val ;
places + + ;
2012-02-12 11:19:57 +00:00
BRICK_INF ( " line %4d: "
" %6d allocated "
" (freed = %6d) \n " ,
i ,
val ,
atomic_read ( & string_free [ i ] ) ) ;
2011-08-12 11:09:48 +00:00
}
}
2019-11-08 08:41:57 +00:00
BRICK_COND_ERR ( final & & count ,
" ======== %d string allocations in %d places (phys=%d) \n " ,
count , places , atomic_read ( & phys_string_alloc ) ) ;
2011-08-12 11:09:48 +00:00
# endif
}
EXPORT_SYMBOL_GPL ( brick_mem_statistics ) ;
// module init stuff
2011-08-25 10:16:32 +00:00
int __init init_brick_mem ( void )
2011-08-12 11:09:48 +00:00
{
2011-11-14 17:52:05 +00:00
int i ;
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_MEM_PREALLOC
2011-11-14 17:52:05 +00:00
for ( i = BRICK_MAX_ORDER ; i > = 0 ; i - - ) {
spin_lock_init ( & freelist_lock [ i ] ) ;
}
# endif
2013-12-02 09:37:06 +00:00
# ifdef CONFIG_MARS_DEBUG_MEM_STRONG
for ( i = 0 ; i < MAX_INFO_LISTS ; i + + ) {
INIT_LIST_HEAD ( & inf_anchor [ i ] ) ;
rwlock_init ( & inf_lock [ i ] ) ;
}
# else
( void ) i ;
# endif
2012-08-08 09:16:52 +00:00
get_total_ram ( ) ;
2011-08-31 11:42:04 +00:00
2011-08-12 11:09:48 +00:00
return 0 ;
}
2014-04-23 11:16:26 +00:00
void exit_brick_mem ( void )
2011-08-12 11:09:48 +00:00
{
2012-11-06 11:09:41 +00:00
BRICK_INF ( " deallocating memory... \n " ) ;
2011-11-14 17:52:05 +00:00
# ifdef CONFIG_MARS_MEM_PREALLOC
_free_all ( ) ;
# endif
2014-03-21 08:38:43 +00:00
brick_mem_statistics ( true ) ;
2011-08-12 11:09:48 +00:00
}