X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=smalloc.c;h=c8f1642eb54cfc7863182286be03d03599dd4dae;hp=5dae7e7c9b79928c2ef69aa792ac71277536fea4;hb=10aa136b;hpb=ef799a64618cbd53adb50d615666cd7afe9f0a8f 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 */