Received: by 2002:a25:4158:0:0:0:0:0 with SMTP id o85csp5342892yba; Mon, 13 May 2019 09:15:16 -0700 (PDT) X-Google-Smtp-Source: APXvYqzLali6ObjhrXObBCinhqLRDIaPY86EGn5Tq/HhxfNqAkTuwXwCyrra3/GusYrFyTsUQFWr X-Received: by 2002:a65:5cc8:: with SMTP id b8mr31129571pgt.36.1557764116069; Mon, 13 May 2019 09:15:16 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1557764116; cv=none; d=google.com; s=arc-20160816; b=ZeyW5Qb0hecHZnOJwdDK7nQxP1uyUWeTgjJVOqRrluBSTw9sOv9BtzYlyvph1zXULd RQK3YTubhlVSNAt27bLx3aF/w+hmSOCRItF0fnBtPgMcM903ikkz7BBZYM/gVzsU/8Vn UJF6pMb3owXq59YqP1jMwY8axe1hUK3pfJ9tNQYYFDvKZhHhxKeGJzrsSlBEoUcTCUPh iCfo9awI8xbNiLWO9j2/nGCi1/HpiAWjiGfhfYdzcpc0TjTPMYnHNKlfUyM6dMMH2mG4 18kzaI9sRbW1x0DaKWlEKX3Ayq7J3awxOgjS8gBUfxhuKfmA139EspUMxfwhQ5hACKVa btNg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:date:subject:user-agent:message-id :references:cc:in-reply-to:from:to:content-transfer-encoding :mime-version; bh=yMUDwVD4jNZkPQPXJ3VYlc8U2fv+2vqL+p0/byrPDAE=; b=0s0ME+UNBrWiMZSRcY4FpR6ez2SfDaKPiOkMNcK96OIZUiTJUgsRDTyrjEao4qx/WF NN3KEWF7+ZcXV9LZnuYkDZRe9jb/jKjj4AK93KWUpJ9Kug3jcVt6DPzipKHHaTg1E6do khgmzVaIE9SSH4ycs+RkBPo7WriQmJQQ7ONIZil4NPlY0N0OB/dZFugOQkIdVqHuzFqZ jTVs/scMRqF7DytLJtyhEFgY9Heug9e5HY+Z44yAheLAi5T44UTDZ2Sos2LLym0H3/07 FokehIs6G/E3b2vtRk4j6IywAIs/XbDDiSu2L0zkz6AIAXznsgPxcfJPwgYW91zPZwPF aLRQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id l35si6007700plb.276.2019.05.13.09.14.59; Mon, 13 May 2019 09:15:16 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730881AbfEMOri convert rfc822-to-8bit (ORCPT + 99 others); Mon, 13 May 2019 10:47:38 -0400 Received: from mail.fireflyinternet.com ([109.228.58.192]:64365 "EHLO fireflyinternet.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1728916AbfEMOri (ORCPT ); Mon, 13 May 2019 10:47:38 -0400 X-Default-Received-SPF: pass (skip=forwardok (res=PASS)) x-ip-name=78.156.65.138; Received: from localhost (unverified [78.156.65.138]) by fireflyinternet.com (Firefly Internet (M1)) with ESMTP (TLS) id 16541986-1500050 for multiple; Mon, 13 May 2019 15:47:23 +0100 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8BIT To: Daniel Vetter , Steven Price From: Chris Wilson In-Reply-To: <20190513143921.GP17751@phenom.ffwll.local> Cc: Tomeu Vizoso , David Airlie , linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, Alyssa Rosenzweig References: <20190513143244.16478-1-steven.price@arm.com> <20190513143921.GP17751@phenom.ffwll.local> Message-ID: <155775884217.2165.11223399053598674062@skylake-alporthouse-com> User-Agent: alot/0.6 Subject: Re: [PATCH] drm/panfrost: Use drm_gem_dump_map_offset() Date: Mon, 13 May 2019 15:47:22 +0100 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Quoting Daniel Vetter (2019-05-13 15:39:21) > On Mon, May 13, 2019 at 03:32:44PM +0100, Steven Price wrote: > > panfrost_ioctl_mmap_bo() contains a reimplementation of > > drm_gem_dump_map_offset() but with a bug - it allows mapping imported > > objects (without going through the exporter). Fix this by switching to > > use the generic drm_gem_dump_map_offset() function instead which has the > > bonus of simplifying the code. > > gem_dumb stuff is for kms drivers, panfrost is a render driver. We're > generally trying to separate these two worlds somewhat cleanly. > > I think it'd be good to have a non-dumb version of this in the core, and > use that. Or upgrade the dumb version to be that helper for everyone (and > drop the _dumb). More specifically, since panfrost is using the drm_gem_shmem helper and vm_ops, it too can provide the wrapper as it is the drm_gem_shmem layer that implies that trying to mmap an imported object is an issue as that is not a universal problem. -Chris