mm, page_alloc: distinguish between being unable to sleep, unwilling to sleep and...
authorMel Gorman <mgorman@techsingularity.net>
Sat, 7 Nov 2015 00:28:21 +0000 (16:28 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 7 Nov 2015 01:50:42 +0000 (17:50 -0800)
commitd0164adc89f6bb374d304ffcc375c6d2652fe67d
treede1cbe09c86dcd24a4a476f7e0b41af239bbdc29
parent016c13daa5c9e4827eca703e2f0621c131f2cca3
mm, page_alloc: distinguish between being unable to sleep, unwilling to sleep and avoiding waking kswapd

__GFP_WAIT has been used to identify atomic context in callers that hold
spinlocks or are in interrupts.  They are expected to be high priority and
have access one of two watermarks lower than "min" which can be referred
to as the "atomic reserve".  __GFP_HIGH users get access to the first
lower watermark and can be called the "high priority reserve".

Over time, callers had a requirement to not block when fallback options
were available.  Some have abused __GFP_WAIT leading to a situation where
an optimisitic allocation with a fallback option can access atomic
reserves.

This patch uses __GFP_ATOMIC to identify callers that are truely atomic,
cannot sleep and have no alternative.  High priority users continue to use
__GFP_HIGH.  __GFP_DIRECT_RECLAIM identifies callers that can sleep and
are willing to enter direct reclaim.  __GFP_KSWAPD_RECLAIM to identify
callers that want to wake kswapd for background reclaim.  __GFP_WAIT is
redefined as a caller that is willing to enter direct reclaim and wake
kswapd for background reclaim.

This patch then converts a number of sites

o __GFP_ATOMIC is used by callers that are high priority and have memory
  pools for those requests. GFP_ATOMIC uses this flag.

o Callers that have a limited mempool to guarantee forward progress clear
  __GFP_DIRECT_RECLAIM but keep __GFP_KSWAPD_RECLAIM. bio allocations fall
  into this category where kswapd will still be woken but atomic reserves
  are not used as there is a one-entry mempool to guarantee progress.

o Callers that are checking if they are non-blocking should use the
  helper gfpflags_allow_blocking() where possible. This is because
  checking for __GFP_WAIT as was done historically now can trigger false
  positives. Some exceptions like dm-crypt.c exist where the code intent
  is clearer if __GFP_DIRECT_RECLAIM is used instead of the helper due to
  flag manipulations.

o Callers that built their own GFP flags instead of starting with GFP_KERNEL
  and friends now also need to specify __GFP_KSWAPD_RECLAIM.

The first key hazard to watch out for is callers that removed __GFP_WAIT
and was depending on access to atomic reserves for inconspicuous reasons.
In some cases it may be appropriate for them to use __GFP_HIGH.

The second key hazard is callers that assembled their own combination of
GFP flags instead of starting with something like GFP_KERNEL.  They may
now wish to specify __GFP_KSWAPD_RECLAIM.  It's almost certainly harmless
if it's missed in most cases as other activity will wake kswapd.

Signed-off-by: Mel Gorman <mgorman@techsingularity.net>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
Acked-by: Michal Hocko <mhocko@suse.com>
Acked-by: Johannes Weiner <hannes@cmpxchg.org>
Cc: Christoph Lameter <cl@linux.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Vitaly Wool <vitalywool@gmail.com>
Cc: Rik van Riel <riel@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
66 files changed:
Documentation/vm/balance
arch/arm/mm/dma-mapping.c
arch/arm/xen/mm.c
arch/arm64/mm/dma-mapping.c
arch/x86/kernel/pci-dma.c
block/bio.c
block/blk-core.c
block/blk-ioc.c
block/blk-mq-tag.c
block/blk-mq.c
drivers/block/drbd/drbd_receiver.c
drivers/block/osdblk.c
drivers/connector/connector.c
drivers/firewire/core-cdev.c
drivers/gpu/drm/i915/i915_gem.c
drivers/infiniband/core/sa_query.c
drivers/iommu/amd_iommu.c
drivers/iommu/intel-iommu.c
drivers/md/dm-crypt.c
drivers/md/dm-kcopyd.c
drivers/media/pci/solo6x10/solo6x10-v4l2-enc.c
drivers/media/pci/solo6x10/solo6x10-v4l2.c
drivers/media/pci/tw68/tw68-video.c
drivers/mtd/mtdcore.c
drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c
drivers/staging/android/ion/ion_system_heap.c
drivers/staging/lustre/include/linux/libcfs/libcfs_private.h
drivers/usb/host/u132-hcd.c
drivers/video/fbdev/vermilion/vermilion.c
fs/btrfs/disk-io.c
fs/btrfs/extent_io.c
fs/btrfs/volumes.c
fs/ext4/super.c
fs/fscache/cookie.c
fs/fscache/page.c
fs/jbd2/transaction.c
fs/nfs/file.c
fs/xfs/xfs_qm.c
include/linux/gfp.h
include/linux/skbuff.h
include/net/sock.h
include/trace/events/gfpflags.h
kernel/audit.c
kernel/cgroup.c
kernel/locking/lockdep.c
kernel/power/snapshot.c
kernel/smp.c
lib/idr.c
lib/radix-tree.c
mm/backing-dev.c
mm/dmapool.c
mm/memcontrol.c
mm/mempool.c
mm/migrate.c
mm/page_alloc.c
mm/slab.c
mm/slub.c
mm/vmalloc.c
mm/vmscan.c
mm/zswap.c
net/core/skbuff.c
net/core/sock.c
net/netlink/af_netlink.c
net/rds/ib_recv.c
net/rxrpc/ar-connection.c
net/sctp/associola.c