diff options
author | Srikant Patnaik | 2015-01-13 15:08:24 +0530 |
---|---|---|
committer | Srikant Patnaik | 2015-01-13 15:08:24 +0530 |
commit | 97327692361306d1e6259021bc425e32832fdb50 (patch) | |
tree | fe9088f3248ec61e24f404f21b9793cb644b7f01 /include/linux/kmalloc_sizes.h | |
parent | 2d05a8f663478a44e088d122e0d62109bbc801d0 (diff) | |
parent | a3a8b90b61e21be3dde9101c4e86c881e0f06210 (diff) | |
download | FOSSEE-netbook-kernel-source-97327692361306d1e6259021bc425e32832fdb50.tar.gz FOSSEE-netbook-kernel-source-97327692361306d1e6259021bc425e32832fdb50.tar.bz2 FOSSEE-netbook-kernel-source-97327692361306d1e6259021bc425e32832fdb50.zip |
dirty fix to merging
Diffstat (limited to 'include/linux/kmalloc_sizes.h')
-rw-r--r-- | include/linux/kmalloc_sizes.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/include/linux/kmalloc_sizes.h b/include/linux/kmalloc_sizes.h new file mode 100644 index 00000000..e576b848 --- /dev/null +++ b/include/linux/kmalloc_sizes.h @@ -0,0 +1,45 @@ +#if (PAGE_SIZE == 4096) + CACHE(32) +#endif + CACHE(64) +#if L1_CACHE_BYTES < 64 + CACHE(96) +#endif + CACHE(128) +#if L1_CACHE_BYTES < 128 + CACHE(192) +#endif + CACHE(256) + CACHE(512) + CACHE(1024) + CACHE(2048) + CACHE(4096) + CACHE(8192) + CACHE(16384) + CACHE(32768) + CACHE(65536) + CACHE(131072) +#if KMALLOC_MAX_SIZE >= 262144 + CACHE(262144) +#endif +#if KMALLOC_MAX_SIZE >= 524288 + CACHE(524288) +#endif +#if KMALLOC_MAX_SIZE >= 1048576 + CACHE(1048576) +#endif +#if KMALLOC_MAX_SIZE >= 2097152 + CACHE(2097152) +#endif +#if KMALLOC_MAX_SIZE >= 4194304 + CACHE(4194304) +#endif +#if KMALLOC_MAX_SIZE >= 8388608 + CACHE(8388608) +#endif +#if KMALLOC_MAX_SIZE >= 16777216 + CACHE(16777216) +#endif +#if KMALLOC_MAX_SIZE >= 33554432 + CACHE(33554432) +#endif |