diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-07 08:42:20 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-07 08:42:20 -0700 | 
| commit | 0f47c9423c0fe468d0b5b153f9b9d6e8e20707eb (patch) | |
| tree | 9eaec7fb4dc5fbfae07d168d0493a0a0a67c7d47 /include/linux/kmalloc_sizes.h | |
| parent | b9e306e07ed58fc354bbd58124b281dd7dc697b7 (diff) | |
| parent | 69df2ac1288b456a95aceadafbf88cd891a577c8 (diff) | |
| download | olio-linux-3.10-0f47c9423c0fe468d0b5b153f9b9d6e8e20707eb.tar.xz olio-linux-3.10-0f47c9423c0fe468d0b5b153f9b9d6e8e20707eb.zip  | |
Merge branch 'slab/for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/linux
Pull slab changes from Pekka Enberg:
 "The bulk of the changes are more slab unification from Christoph.
  There's also few fixes from Aaron, Glauber, and Joonsoo thrown into
  the mix."
* 'slab/for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/linux: (24 commits)
  mm, slab_common: Fix bootstrap creation of kmalloc caches
  slab: Return NULL for oversized allocations
  mm: slab: Verify the nodeid passed to ____cache_alloc_node
  slub: tid must be retrieved from the percpu area of the current processor
  slub: Do not dereference NULL pointer in node_match
  slub: add 'likely' macro to inc_slabs_node()
  slub: correct to calculate num of acquired objects in get_partial_node()
  slub: correctly bootstrap boot caches
  mm/sl[au]b: correct allocation type check in kmalloc_slab()
  slab: Fixup CONFIG_PAGE_ALLOC/DEBUG_SLAB_LEAK sections
  slab: Handle ARCH_DMA_MINALIGN correctly
  slab: Common definition for kmem_cache_node
  slab: Rename list3/l3 to node
  slab: Common Kmalloc cache determination
  stat: Use size_t for sizes instead of unsigned
  slab: Common function to create the kmalloc array
  slab: Common definition for the array of kmalloc caches
  slab: Common constants for kmalloc boundaries
  slab: Rename nodelists to node
  slab: Common name for the per node structures
  ...
Diffstat (limited to 'include/linux/kmalloc_sizes.h')
| -rw-r--r-- | include/linux/kmalloc_sizes.h | 45 | 
1 files changed, 0 insertions, 45 deletions
diff --git a/include/linux/kmalloc_sizes.h b/include/linux/kmalloc_sizes.h deleted file mode 100644 index e576b848ce1..00000000000 --- a/include/linux/kmalloc_sizes.h +++ /dev/null @@ -1,45 +0,0 @@ -#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  |