From mboxrd@z Thu Jan 1 00:00:00 1970 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 D86BAC004C0 for ; Sat, 21 Oct 2023 15:44:16 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 48C1F10E131; Sat, 21 Oct 2023 15:44:16 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.136]) by gabe.freedesktop.org (Postfix) with ESMTPS id 097F410E131 for ; Sat, 21 Oct 2023 15:44:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1697903055; x=1729439055; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=SWjaaUFZlJfK77jO1ZUaJ0EvRevGpR7sJ4L+9nMAHKk=; b=V8LZLSROyquwFBUdAfFJiG4Ox9Nn2SpR7uInumPlw3/VD/ASjSfIATPe Bz2MWSWcyzemgQboehB4tK8nuySHkfA7kVNJEBv5Z328N4016TCMugJX9 OI6uk5qnRdPHzW3BYq/UxtJAkaj+iyPrvXe7A8zh6/X8LVLsxjFD5i1wo ejz5nyOzH1ZvMGYYIO2TnrqUNC+ksuV5/ZrBeXNvzTpeo8IFo/wHX7blA hyqzbj9ChGMIcRTScofdsN6F1J2/q48gVMNiCKHtbFdr7AoNEE+1fusw/ DmfRTLgMuDa852fJr5JPuoUE30leI+CxIDONn4uWFQdyfU8d+k4iHdOX2 A==; X-IronPort-AV: E=McAfee;i="6600,9927,10870"; a="365981794" X-IronPort-AV: E=Sophos;i="6.03,241,1694761200"; d="scan'208";a="365981794" Received: from orviesa001.jf.intel.com ([10.64.159.141]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Oct 2023 08:44:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.03,241,1694761200"; d="scan'208";a="5383547" Received: from lkp-server01.sh.intel.com (HELO 8917679a5d3e) ([10.239.97.150]) by orviesa001.jf.intel.com with ESMTP; 21 Oct 2023 08:43:00 -0700 Received: from kbuild by 8917679a5d3e with local (Exim 4.96) (envelope-from ) id 1quE94-0004yH-1K; Sat, 21 Oct 2023 15:44:10 +0000 Date: Sat, 21 Oct 2023 23:43:37 +0800 From: kernel test robot To: Jonathan Cavitt , intel-gfx@lists.freedesktop.org Message-ID: <202310212325.rC9VhDGf-lkp@intel.com> References: <20231010184423.2118908-4-jonathan.cavitt@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231010184423.2118908-4-jonathan.cavitt@intel.com> Subject: Re: [Intel-gfx] [PATCH dii-client 2/2] drm/i915: Use selective tlb invalidations where supported 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: jonathan.cavitt@intel.com, nirmoy.das@intel.com, andi.shyti@intel.com, saurabhg.gupta@intel.com, oe-kbuild-all@lists.linux.dev Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Hi Jonathan, kernel test robot noticed the following build errors: [auto build test ERROR on drm-tip/drm-tip] url: https://github.com/intel-lab-lkp/linux/commits/Jonathan-Cavitt/drm-i915-Use-selective-tlb-invalidations-where-supported/20231011-034501 base: git://anongit.freedesktop.org/drm/drm-tip drm-tip patch link: https://lore.kernel.org/r/20231010184423.2118908-4-jonathan.cavitt%40intel.com patch subject: [Intel-gfx] [PATCH dii-client 2/2] drm/i915: Use selective tlb invalidations where supported config: x86_64-allyesconfig (https://download.01.org/0day-ci/archive/20231021/202310212325.rC9VhDGf-lkp@intel.com/config) compiler: gcc-12 (Debian 12.2.0-14) 12.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231021/202310212325.rC9VhDGf-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot | Closes: https://lore.kernel.org/oe-kbuild-all/202310212325.rC9VhDGf-lkp@intel.com/ All errors (new ones prefixed by >>): >> drivers/gpu/drm/i915/i915_vma.c:1343:25: error: expected ';', ',' or ')' before 'u64' 1343 | u64 start, u64 size) | ^~~ vim +1343 drivers/gpu/drm/i915/i915_vma.c 1341 1342 void vma_invalidate_tlb(struct i915_address_space *vm, u32 *tlb > 1343 u64 start, u64 size) 1344 { 1345 struct intel_gt *gt; 1346 int id; 1347 1348 if (!tlb) 1349 return; 1350 1351 /* 1352 * Before we release the pages that were bound by this vma, we 1353 * must invalidate all the TLBs that may still have a reference 1354 * back to our physical address. It only needs to be done once, 1355 * so after updating the PTE to point away from the pages, record 1356 * the most recent TLB invalidation seqno, and if we have not yet 1357 * flushed the TLBs upon release, perform a full invalidation. 1358 */ 1359 for_each_gt(gt, vm->i915, id) { 1360 if (!intel_gt_invalidate_tlb_range(gt, start, size)) 1361 WRITE_ONCE(tlb[id], 1362 intel_gt_next_invalidate_tlb_full(gt)); 1363 } 1364 } 1365 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki