Symbol: ARCH_KMALLOC_MINALIGN
block/bio.c
94
ARCH_KMALLOC_MINALIGN,
drivers/crypto/caam/caamalg.c
1783
aligned_size += ~(ARCH_KMALLOC_MINALIGN - 1) &
drivers/fpga/microchip-spi.c
46
u8 tx __aligned(ARCH_KMALLOC_MINALIGN);
drivers/gpu/drm/drm_format_helper.c
190
size_t stmp_off = round_up(dbuf_len, ARCH_KMALLOC_MINALIGN); /* for sbuf alignment */
drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
2825
BUILD_BUG_ON(~(ARCH_KMALLOC_MINALIGN - 1) &
drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
2981
BUILD_BUG_ON(~(ARCH_KMALLOC_MINALIGN - 1) &
drivers/infiniband/hw/mlx5/mr.c
1986
add_size = max_t(int, MLX5_UMR_ALIGN - ARCH_KMALLOC_MINALIGN, 0);
drivers/platform/wmi/marshalling.c
164
if (ARCH_KMALLOC_MINALIGN < 8) {
drivers/usb/misc/usbtest.c
381
return (unsigned long)buf & (ARCH_KMALLOC_MINALIGN - 1);
include/linux/crypto.h
171
#define CRYPTO_MINALIGN ARCH_KMALLOC_MINALIGN
include/linux/slab.h
534
#if ARCH_DMA_MINALIGN > 8 && !defined(ARCH_KMALLOC_MINALIGN)
include/linux/slab.h
539
#ifndef ARCH_KMALLOC_MINALIGN
include/linux/slab.h
541
#elif ARCH_KMALLOC_MINALIGN > 8
include/linux/slab.h
542
#define KMALLOC_MIN_SIZE ARCH_KMALLOC_MINALIGN
include/linux/slab.h
572
#define __assume_kmalloc_alignment __assume_aligned(ARCH_KMALLOC_MINALIGN)
mm/slab_common.c
700
unsigned int align = ARCH_KMALLOC_MINALIGN;
mm/slab_common.c
939
minalign = ARCH_KMALLOC_MINALIGN;
mm/slab_common.c
976
if (minalign > ARCH_KMALLOC_MINALIGN) {
net/netfilter/nf_conntrack_core.c
529
if (ARCH_KMALLOC_MINALIGN <= NFCT_INFOMASK) {
net/netfilter/nf_conntrack_core.c
557
if (ARCH_KMALLOC_MINALIGN <= NFCT_INFOMASK)
net/netfilter/nft_set_pipapo.h
71
(NFT_PIPAPO_ALIGN - ARCH_KMALLOC_MINALIGN)
rust/bindings/bindings_helper.h
106
const size_t RUST_CONST_HELPER_ARCH_KMALLOC_MINALIGN = ARCH_KMALLOC_MINALIGN;