From patchwork Wed Jun 21 09:54:56 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tvrtko Ursulin X-Patchwork-Id: 13287042 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 02C32EB64D7 for ; Wed, 21 Jun 2023 09:55:04 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 6578310E430; Wed, 21 Jun 2023 09:55:04 +0000 (UTC) Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id 450AE10E430; Wed, 21 Jun 2023 09:55:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1687341302; x=1718877302; h=date:from:to:cc:subject:message-id:mime-version; bh=F2mry1d8GnAtz4qu01BktESobnqbuu7wjoYN0vWB4VE=; b=WmcuqzISchPjdkOODjpx7CJcPjm1qiIp08CWr/wPMAQit+0sEzf2WD/N N5sWgFjSe0rSYhugXHlT7rxfRgWvyrh7LjprVghcLKMYmHLJeBF6plP2g IF3lHNwKOgovsqs/AX2SXLnhwiDZunar+kwU+/UeepM7yYUVgOmS05ayD Y2OVpzlqXuoK3C3HlV8cpNqf+Dzld191iCLTXCNZbv0k/DOUiujRw1zHm b2H8WSCT4DGlYU4CKhMbQfbvCloCq5kpMmEbD0mpmUKApYHMKd33Qnl5Q xVwhUVRU9p1/WOU3PMM3i8Hp6LdZUXVKGoT8PrSi38RxHVhn6wMEG0xfQ g==; X-IronPort-AV: E=McAfee;i="6600,9927,10747"; a="423788626" X-IronPort-AV: E=Sophos;i="6.00,260,1681196400"; d="scan'208";a="423788626" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Jun 2023 02:55:01 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10747"; a="838555811" X-IronPort-AV: E=Sophos;i="6.00,260,1681196400"; d="scan'208";a="838555811" Received: from psscully-mobl2.ger.corp.intel.com (HELO localhost) ([10.213.228.117]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Jun 2023 02:54:58 -0700 Date: Wed, 21 Jun 2023 10:54:56 +0100 From: Tvrtko Ursulin To: Dave Airlie , Daniel Vetter Message-ID: MIME-Version: 1.0 Content-Disposition: inline Subject: [Intel-gfx] [PULL] drm-intel-next-fixes X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: dim-tools@lists.freedesktop.org, dri-devel@lists.freedesktop.org, Maxime Ripard , Thomas Zimmermann , Rodrigo Vivi , intel-gfx@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Hi Dave, Daniel, A weekly collection of fixes for the drm-next/6.5 merge window: One fix for incorrect error handling in the frame buffer mmap callback, HuC init error handling fix, missing wakeref during GSC init and a build fix when !CONFIG_PROC_FS. Regards, Tvrtko drm-intel-next-fixes-2023-06-21: One fix for incorrect error handling in the frame buffer mmap callback, HuC init error handling fix, missing wakeref during GSC init and a build fix when !CONFIG_PROC_FS. The following changes since commit 2222dcb0775d36de28992f56455ab3967b30d380: Merge tag 'drm-msm-next-2023-06-18' of https://gitlab.freedesktop.org/drm/msm into drm-next (2023-06-19 16:01:46 +1000) are available in the Git repository at: git://anongit.freedesktop.org/drm/drm-intel tags/drm-intel-next-fixes-2023-06-21 for you to fetch changes up to 274d4b96b12f78cef4f72a97a4967032233f6cae: drm/i915: Fix a NULL vs IS_ERR() bug (2023-06-20 08:54:47 +0100) ---------------------------------------------------------------- One fix for incorrect error handling in the frame buffer mmap callback, HuC init error handling fix, missing wakeref during GSC init and a build fix when !CONFIG_PROC_FS. ---------------------------------------------------------------- Alan Previn (1): drm/i915/gsc: take a wakeref for the proxy-init-completion check Arnd Bergmann (1): drm/i915: make i915_drm_client_fdinfo() reference conditional again Dan Carpenter (1): drm/i915: Fix a NULL vs IS_ERR() bug Harshit Mogalapalli (1): drm/i915/huc: Fix missing error code in intel_huc_init() drivers/gpu/drm/i915/gem/i915_gem_mman.c | 4 ++-- drivers/gpu/drm/i915/gt/uc/intel_gsc_fw.c | 22 ++++++++++++++-------- drivers/gpu/drm/i915/gt/uc/intel_huc.c | 1 + drivers/gpu/drm/i915/i915_driver.c | 2 +- drivers/gpu/drm/i915/i915_drm_client.h | 2 -- 5 files changed, 18 insertions(+), 13 deletions(-)