Re: [Intel-gfx] [RFC PATCH] drm/i915: Suppress page allocation warnings on engine park

2020-04-02 Thread Janusz Krzysztofik
On Thu, 2020-04-02 at 11:42 +0100, Chris Wilson wrote: > Quoting Janusz Krzysztofik (2020-04-02 11:36:21) > > On Thu, 2020-04-02 at 11:32 +0100, Chris Wilson wrote: > > > Quoting Janusz Krzysztofik (2020-04-02 11:28:03) > > > > On Thu, 2020-04-02 at 11:21 +0100, Chris Wilson wrote: > > > > > Quotin

Re: [Intel-gfx] [RFC PATCH] drm/i915: Suppress page allocation warnings on engine park

2020-04-02 Thread Chris Wilson
Quoting Janusz Krzysztofik (2020-04-02 11:36:21) > On Thu, 2020-04-02 at 11:32 +0100, Chris Wilson wrote: > > Quoting Janusz Krzysztofik (2020-04-02 11:28:03) > > > On Thu, 2020-04-02 at 11:21 +0100, Chris Wilson wrote: > > > > Quoting Janusz Krzysztofik (2020-04-02 11:19:06) > > > > > On memory co

Re: [Intel-gfx] [RFC PATCH] drm/i915: Suppress page allocation warnings on engine park

2020-04-02 Thread Janusz Krzysztofik
On Thu, 2020-04-02 at 11:32 +0100, Chris Wilson wrote: > Quoting Janusz Krzysztofik (2020-04-02 11:28:03) > > On Thu, 2020-04-02 at 11:21 +0100, Chris Wilson wrote: > > > Quoting Janusz Krzysztofik (2020-04-02 11:19:06) > > > > On memory constrained systems it may happen that no pages are available

Re: [Intel-gfx] [RFC PATCH] drm/i915: Suppress page allocation warnings on engine park

2020-04-02 Thread Chris Wilson
Quoting Janusz Krzysztofik (2020-04-02 11:28:03) > On Thu, 2020-04-02 at 11:21 +0100, Chris Wilson wrote: > > Quoting Janusz Krzysztofik (2020-04-02 11:19:06) > > > On memory constrained systems it may happen that no pages are available > > > for serving object creation attempt during engine park.

Re: [Intel-gfx] [RFC PATCH] drm/i915: Suppress page allocation warnings on engine park

2020-04-02 Thread Janusz Krzysztofik
On Thu, 2020-04-02 at 11:21 +0100, Chris Wilson wrote: > Quoting Janusz Krzysztofik (2020-04-02 11:19:06) > > On memory constrained systems it may happen that no pages are available > > for serving object creation attempt during engine park. Since we can > > and we do ignore that failure, let's su

Re: [Intel-gfx] [RFC PATCH] drm/i915: Suppress page allocation warnings on engine park

2020-04-02 Thread Chris Wilson
Quoting Janusz Krzysztofik (2020-04-02 11:19:06) > On memory constrained systems it may happen that no pages are available > for serving object creation attempt during engine park. Since we can > and we do ignore that failure, let's suppress possible warnings from > page allocator to avoid confusi

[Intel-gfx] [RFC PATCH] drm/i915: Suppress page allocation warnings on engine park

2020-04-02 Thread Janusz Krzysztofik
On memory constrained systems it may happen that no pages are available for serving object creation attempt during engine park. Since we can and we do ignore that failure, let's suppress possible warnings from page allocator to avoid confusion and make CI happy. Signed-off-by: Janusz Krzysztofik