Symbol: PAGE_ALLOC_COSTLY_ORDER
drivers/net/ethernet/amd/xgbe/xgbe-desc.c
261
PAGE_ALLOC_COSTLY_ORDER, ring->node);
drivers/net/ethernet/synopsys/dwc-xlgmac-desc.c
399
order = max_t(int, PAGE_ALLOC_COSTLY_ORDER - 1, 0);
drivers/net/tap.c
553
if (len - linear > MAX_SKB_FRAGS * (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER))
drivers/net/tap.c
554
linear = len - MAX_SKB_FRAGS * (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER);
drivers/net/tap.c
556
err, PAGE_ALLOC_COSTLY_ORDER);
drivers/net/tun.c
1461
if (len - linear > MAX_SKB_FRAGS * (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER))
drivers/net/tun.c
1462
linear = len - MAX_SKB_FRAGS * (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER);
drivers/net/tun.c
1464
&err, PAGE_ALLOC_COSTLY_ORDER);
fs/gfs2/glock.c
2587
#define GFS2_SEQ_GOODSIZE min(PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER, 65536UL)
include/linux/mmzone.h
815
#define NR_LOWORDER_PCP_LISTS (MIGRATE_PCPTYPES * (PAGE_ALLOC_COSTLY_ORDER + 1))
include/linux/virtio_vsock.h
69
PAGE_ALLOC_COSTLY_ORDER, &err, mask);
include/linux/virtio_vsock.h
86
if (size <= SKB_WITH_OVERHEAD(PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER))
kernel/bpf/syscall.c
398
} else if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER)) {
mm/compaction.c
1973
if (cc->order <= PAGE_ALLOC_COSTLY_ORDER)
mm/compaction.c
1997
order >= PAGE_ALLOC_COSTLY_ORDER && !found_block && nr_scanned < limit;
mm/compaction.c
2395
if (order > PAGE_ALLOC_COSTLY_ORDER)
mm/compaction.c
2430
if (order > PAGE_ALLOC_COSTLY_ORDER) {
mm/compaction.c
2517
if (order > PAGE_ALLOC_COSTLY_ORDER && async &&
mm/compaction.c
338
page += (1 << PAGE_ALLOC_COSTLY_ORDER);
mm/memcontrol.c
1922
if (order > PAGE_ALLOC_COSTLY_ORDER)
mm/memcontrol.c
2679
if (nr_reclaimed && nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER))
mm/page_alloc.c
2861
if (order && order <= PAGE_ALLOC_COSTLY_ORDER) {
mm/page_alloc.c
4088
if (order > PAGE_ALLOC_COSTLY_ORDER)
mm/page_alloc.c
4244
if (order > PAGE_ALLOC_COSTLY_ORDER)
mm/page_alloc.c
4256
min_priority = (order > PAGE_ALLOC_COSTLY_ORDER) ?
mm/page_alloc.c
4288
if (!order || order > PAGE_ALLOC_COSTLY_ORDER)
mm/page_alloc.c
4594
if (did_some_progress && order <= PAGE_ALLOC_COSTLY_ORDER)
mm/page_alloc.c
4731
const bool costly_order = order > PAGE_ALLOC_COSTLY_ORDER;
mm/page_alloc.c
656
if (order > PAGE_ALLOC_COSTLY_ORDER)
mm/page_alloc.c
677
if (order <= PAGE_ALLOC_COSTLY_ORDER)
mm/slub.c
7460
IS_ENABLED(CONFIG_SLUB_TINY) ? 1 : PAGE_ALLOC_COSTLY_ORDER;
mm/vmpressure.c
319
if (level > VMPRESSURE_LOW && order <= PAGE_ALLOC_COSTLY_ORDER) {
mm/vmscan.c
6001
(sc->order > PAGE_ALLOC_COSTLY_ORDER ||
mm/vmscan.c
6373
sc->order > PAGE_ALLOC_COSTLY_ORDER &&
net/core/net-sysfs.c
1097
if (sz <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER) ||
net/ipv4/tcp_input.c
5566
PAGE_ALLOC_COSTLY_ORDER,
net/packet/af_packet.c
2930
if (len - linear > MAX_SKB_FRAGS * (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER))
net/packet/af_packet.c
2931
linear = len - MAX_SKB_FRAGS * (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER);
net/packet/af_packet.c
2933
err, PAGE_ALLOC_COSTLY_ORDER);
net/tls/tls.h
44
#define TLS_PAGE_ORDER (min_t(unsigned int, PAGE_ALLOC_COSTLY_ORDER, \
net/unix/af_unix.c
2139
PAGE_ALLOC_COSTLY_ORDER);
net/vmw_vsock/virtio_transport_common.c
34
SKB_MAX_ORDER(VIRTIO_VSOCK_SKB_HEADROOM, PAGE_ALLOC_COSTLY_ORDER)