[Intel-gfx] [PATCH 20/24] drm/i915: Allocate fbcon from stolen memory
Jesse Barnes
jbarnes at virtuousgeek.org
Thu Oct 11 20:54:35 CEST 2012
On Tue, 4 Sep 2012 21:03:12 +0100
Chris Wilson <chris at chris-wilson.co.uk> wrote:
> Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>
> ---
> drivers/gpu/drm/i915/intel_fb.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_fb.c b/drivers/gpu/drm/i915/intel_fb.c
> index 97f6735..9de9cd9 100644
> --- a/drivers/gpu/drm/i915/intel_fb.c
> +++ b/drivers/gpu/drm/i915/intel_fb.c
> @@ -84,7 +84,9 @@ static int intelfb_create(struct intel_fbdev *ifbdev,
>
> size = mode_cmd.pitches[0] * mode_cmd.height;
> size = ALIGN(size, PAGE_SIZE);
> - obj = i915_gem_alloc_object(dev, size);
> + obj = i915_gem_object_create_stolen(dev, size);
> + if (obj == NULL)
> + obj = i915_gem_alloc_object(dev, size);
> if (!obj) {
> DRM_ERROR("failed to allocate framebuffer\n");
> ret = -ENOMEM;
Just for fun? Sounds good, may as well put it to use somehow.
Reviewed-by: Jesse Barnes <jbarnes at virtuousgeek.org>
--
Jesse Barnes, Intel Open Source Technology Center
More information about the Intel-gfx
mailing list