From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id DBFA02D46C9 for ; Thu, 24 Jul 2025 12:52:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753361533; cv=none; b=hrH4wqTUgmP+qW0Rf0ZKM0XHpq+ngKZQVC9iS3sMQIcLeHpqu0O6mFlAUMfmCAJwiKD7oNMXsC5tFwG0/lndmfQOTZbbJjhj6YuEexFpkHtbsbrphYUNJAf0QZ+Os3Ob57rgyN+X2PkzJu49skykzU94Y/vWAkIRyocvZZQjGSE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753361533; c=relaxed/simple; bh=DJu7mcsbC7uhEJ9gZqdxamOAr/+0XgNWxo/b11zufhQ=; h=Message-ID:Date:MIME-Version:Subject:To:References:From: In-Reply-To:Content-Type; b=SJ5bLwkBXAWkizWj84CX5XWPbk9rc8OetI/oHfXnfnqHpQstJqpTrkv5ZTYikvYIvJaKHbf+eLm/uWfqNczSzaUw4tQD9ekIGDJbQgAUX9PkEWc9XxrK8laLiRvPc0zes4dFVmpqxcuOebxltFaecoqiSW8gSUAMTocY/spk92Y= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id D193C1A00; Thu, 24 Jul 2025 05:52:04 -0700 (PDT) Received: from [10.1.33.48] (e122027.cambridge.arm.com [10.1.33.48]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 29D5C3F6A8; Thu, 24 Jul 2025 05:52:08 -0700 (PDT) Message-ID: <78ec8bcc-0178-4c5d-9d03-0b534bdd2231@arm.com> Date: Thu, 24 Jul 2025 13:52:07 +0100 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v3 0/3] panthor: print task pid and comm on gpu errors To: Chia-I Wu , Boris Brezillon , Liviu Dudau , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Simona Vetter , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org References: <20250718063816.1452123-1-olvaffe@gmail.com> From: Steven Price Content-Language: en-GB In-Reply-To: <20250718063816.1452123-1-olvaffe@gmail.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 18/07/2025 07:38, Chia-I Wu wrote: > This series saves task pid and comm in panthor_group and prints task pid and > comm on gpu errors. > > v3: fix new kerneldoc warnings > v2: save the task info in panthor_group on panthor_group_create, rather than > in panthor_file on panthor_open, because, when the two differ, we are more > interested in the task that created the group. > > Chia-I Wu (3): > panthor: set owner field for driver fops > panthor: save task pid and comm in panthor_group > panthor: dump task pid and comm on gpu errors > > drivers/gpu/drm/panthor/panthor_drv.c | 14 ++------ > drivers/gpu/drm/panthor/panthor_sched.c | 43 ++++++++++++++++++++++--- > 2 files changed, 41 insertions(+), 16 deletions(-) > Applied to drm-misc-next. Thanks, Steve