From: Michal Hocko <mhocko@suse.com>
To: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>, intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH v2] drm/i915: Remove __GFP_NORETRY from our buffer allocator
Date: Thu, 8 Jun 2017 14:26:22 +0200 [thread overview]
Message-ID: <20170608122621.GI19866@dhcp22.suse.cz> (raw)
In-Reply-To: <20170605103512.18007-1-chris@chris-wilson.co.uk>
Do you plan to merge this patch? I would like to post my
__GFP_RETRY_MAYFAIL series sometime soon and would like to cover this
one as well.
On Mon 05-06-17 11:35:12, Chris Wilson wrote:
> I tried __GFP_NORETRY in the belief that __GFP_RECLAIM was effective. It
> struggles with handling reclaim via kswapd (through inconsistency within
> throttle_direct_reclaim() and even then the race between multiple
> allocators makes the two step of reclaim then allocate fragile), and as
> our buffers are always dirty (with very few exceptions), we required
> kswapd to perform pageout on them. The only effective means of waiting
> on kswapd is to retry the allocations (i.e. not set __GFP_NORETRY). That
> leaves us with the dilemma of invoking the oomkiller instead of
> propagating the allocation failure back to userspace where it can be
> handled more gracefully (one hopes). In the future we may have
> __GFP_MAYFAIL to allow repeats up until we genuinely run out of memory
> and the oomkiller would have been invoked. Until then, let the oomkiller
> wreck havoc.
>
> v2: Stop playing with side-effects of gfp flags and await __GFP_MAYFAIL
>
> Fixes: 24f8e00a8a2e ("drm/i915: Prefer to report ENOMEM rather than incur the oom for gfx allocations")
> Testcase: igt/gem_tiled_swapping
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> Cc: Michal Hocko <mhocko@suse.com>
> ---
> drivers/gpu/drm/i915/i915_gem.c | 15 ++++++++++++++-
> 1 file changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
> index 7286f5dd3e64..845df6067e90 100644
> --- a/drivers/gpu/drm/i915/i915_gem.c
> +++ b/drivers/gpu/drm/i915/i915_gem.c
> @@ -2406,7 +2406,20 @@ i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
> if (!*s) {
> /* reclaim and warn, but no oom */
> gfp = mapping_gfp_mask(mapping);
> - gfp |= __GFP_NORETRY;
> +
> + /* Our bo are always dirty and so we require
> + * kswapd to reclaim our pages (direct reclaim
> + * performs no swapping on its own). However,
> + * direct reclaim is meant to wait for kswapd
> + * when under pressure, this is broken. As a
> + * result __GFP_RECLAIM is unreliable and fails
> + * to actually reclaim dirty pages -- unless
> + * you try over and over again with
> + * !__GFP_NORETRY. However, we still want to
> + * fail this allocation rather than trigger
> + * the out-of-memory killer and for this we
> + * want the future __GFP_MAYFAIL.
> + */
> }
> } while (1);
>
> --
> 2.11.0
>
--
Michal Hocko
SUSE Labs
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2017-06-08 12:26 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-01 13:33 [PATCH 1/3] drm/i915: Allow kswapd to pause the device whilst reaping Chris Wilson
2017-06-01 13:33 ` [PATCH 2/3] drm/i915: Encourage our shrinker more when our shmemfs allocations fails Chris Wilson
2017-06-01 13:33 ` [PATCH 3/3] drm/i915: Remove __GFP_NORETRY from our buffer allocator Chris Wilson
2017-06-02 10:28 ` Joonas Lahtinen
2017-06-05 10:35 ` [PATCH v2] " Chris Wilson
2017-06-05 10:47 ` Daniel Stone
2017-06-05 11:51 ` Chris Wilson
2017-06-05 12:26 ` Michal Hocko
2017-06-05 12:49 ` Chris Wilson
2017-06-05 13:08 ` Michal Hocko
2017-06-05 13:39 ` Chris Wilson
2017-06-06 9:04 ` Michal Hocko
2017-06-05 15:04 ` Chris Wilson
2017-06-06 9:08 ` Michal Hocko
2017-06-08 12:26 ` Michal Hocko [this message]
2017-06-08 16:04 ` Chris Wilson
2017-06-01 14:23 ` ✓ Fi.CI.BAT: success for series starting with [1/3] drm/i915: Allow kswapd to pause the device whilst reaping Patchwork
2017-06-02 10:24 ` [PATCH 1/3] " Joonas Lahtinen
2017-06-02 12:02 ` Mika Kuoppala
2017-06-02 12:20 ` Chris Wilson
2017-06-02 12:38 ` Mika Kuoppala
2017-06-02 13:58 ` Chris Wilson
2017-06-05 11:10 ` ✓ Fi.CI.BAT: success for series starting with [1/3] drm/i915: Allow kswapd to pause the device whilst reaping (rev2) Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170608122621.GI19866@dhcp22.suse.cz \
--to=mhocko@suse.com \
--cc=chris@chris-wilson.co.uk \
--cc=daniel.vetter@ffwll.ch \
--cc=intel-gfx@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox