X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=smalloc.c;h=c8f1642eb54cfc7863182286be03d03599dd4dae;hp=5dae7e7c9b79928c2ef69aa792ac71277536fea4;hb=3e2e48a72851354f7d6d4da9fc83d4a6df20e955;hpb=d7213923067aa49922962a469a691c3ec951064d diff --git a/smalloc.c b/smalloc.c index 5dae7e7c..c8f1642e 100644 --- a/smalloc.c +++ b/smalloc.c @@ -16,6 +16,7 @@ #include "mutex.h" #include "arch/arch.h" #include "os/os.h" +#include "smalloc.h" #define SMALLOC_REDZONE /* define to detect memory corruption */ @@ -30,7 +31,7 @@ #define SMALLOC_POST_RED 0x5aa55aa5U unsigned int smalloc_pool_size = INITIAL_SIZE; -const int int_mask = sizeof(int) - 1; +static const int int_mask = sizeof(int) - 1; struct pool { struct fio_mutex *lock; /* protects this pool */