Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Sagar Arun Kamble <sagar.a.kamble@intel.com>
To: "Michał Winiarski" <michal.winiarski@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 05/15] drm/i915/guc: Log runtime should consist of both mapping and relay
Date: Tue, 6 Mar 2018 11:24:24 +0530	[thread overview]
Message-ID: <60576629-6121-318d-d3b9-4edeaab32ab1@intel.com> (raw)
In-Reply-To: <20180305141457.ky2lvhbbb5ne4xip@mwiniars-main.ger.corp.intel.com>



On 3/5/2018 7:44 PM, Michał Winiarski wrote:
> On Mon, Mar 05, 2018 at 04:01:18PM +0530, Sagar Arun Kamble wrote:
>>
>> On 2/27/2018 6:22 PM, Michał Winiarski wrote:
>>> Currently, we're treating relay and mapping of GuC log as a separate
>>> concepts. We're also using inconsistent locking, sometimes using
>>> relay_lock, sometimes using struct mutex.
>>> Let's correct that. Anything touching the runtime is now serialized
>>> using runtime.lock, while we're still using struct mutex as inner lock
>>> for mapping.
>>> We're still racy in setting the log level - but we'll take care of that
>>> in the following patches.
>>>
>>> Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
>>> Cc: Chris Wilson <chris@chris-wilson.co.uk>
>>> Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
>>> Cc: Sagar Arun Kamble <sagar.a.kamble@intel.com>
>>> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>> ---
>>>    drivers/gpu/drm/i915/intel_guc_log.c | 110 ++++++++++-------------------------
>>>    drivers/gpu/drm/i915/intel_guc_log.h |   3 +-
>>>    drivers/gpu/drm/i915/intel_uc.c      |  14 +++--
>>>    3 files changed, 42 insertions(+), 85 deletions(-)
>>>
> [SNIP]
<snip>
> How strongly do you feel about this one?
> I wanted to tidy first (decouple things), rename later.
fine. it's ok.
>>>    	INIT_WORK(&guc->log.runtime.flush_work, capture_logs_work);
>>>    }
>>> @@ -448,12 +418,7 @@ int guc_log_relay_create(struct intel_guc *guc)
>>>    	size_t n_subbufs, subbuf_size;
>>>    	int ret;
>>> -	if (!i915_modparams.guc_log_level)
>>> -		return 0;
>>> -
>>> -	mutex_lock(&guc->log.runtime.relay_lock);
>>> -
>>> -	GEM_BUG_ON(guc_log_has_relay(guc));
>>> +	lockdep_assert_held(&guc->log.runtime.lock);
>>>    	 /* Keep the size of sub buffers same as shared log buffer */
>>>    	subbuf_size = GUC_LOG_SIZE;
>>> @@ -483,12 +448,9 @@ int guc_log_relay_create(struct intel_guc *guc)
>>>    	GEM_BUG_ON(guc_log_relay_chan->subbuf_size < subbuf_size);
>>>    	guc->log.runtime.relay_chan = guc_log_relay_chan;
>>> -	mutex_unlock(&guc->log.runtime.relay_lock);
>>> -
>>>    	return 0;
>>>    err:
>>> -	mutex_unlock(&guc->log.runtime.relay_lock);
>>>    	/* logging will be off */
>>>    	i915_modparams.guc_log_level = 0;
>> This log_level decoupling is not taken care
> Yup, though it belongs in "drm/i915/guc: Split relay control and GuC log level",
> I'll add it there.
>
>>>    	return ret;
>>> @@ -496,20 +458,10 @@ int guc_log_relay_create(struct intel_guc *guc)
>>>    void guc_log_relay_destroy(struct intel_guc *guc)
>>>    {
>>> -	mutex_lock(&guc->log.runtime.relay_lock);
>>> -
>>> -	/*
>>> -	 * It's possible that the relay was never allocated because
>>> -	 * GuC log was disabled at the boot time.
>>> -	 */
>>> -	if (!guc_log_has_relay(guc))
>>> -		goto out_unlock;
>>> +	lockdep_assert_held(&guc->log.runtime.lock);
>>>    	relay_close(guc->log.runtime.relay_chan);
>>>    	guc->log.runtime.relay_chan = NULL;
>>> -
>>> -out_unlock:
>>> -	mutex_unlock(&guc->log.runtime.relay_lock);
>>>    }
>>>    static void guc_log_capture_logs(struct intel_guc *guc)
>>> @@ -608,7 +560,6 @@ static void guc_log_flush_irq_disable(struct intel_guc *guc)
>>>    void intel_guc_log_destroy(struct intel_guc *guc)
>>>    {
>>> -	guc_log_runtime_destroy(guc);
>>>    	i915_vma_unpin_and_release(&guc->log.vma);
>>>    }
>>> @@ -678,9 +629,10 @@ int intel_guc_log_control_set(struct intel_guc *guc, u64 val)
>>>    int intel_guc_log_register(struct intel_guc *guc)
>>>    {
>>> -	struct drm_i915_private *dev_priv = guc_to_i915(guc);
>>>    	int ret;
>>> +	mutex_lock(&guc->log.runtime.lock);
>>> +
>>>    	GEM_BUG_ON(guc_log_has_runtime(guc));
>>>    	/*
>>> @@ -692,35 +644,33 @@ int intel_guc_log_register(struct intel_guc *guc)
>>>    	if (ret)
>>>    		goto err;
>>> -	mutex_lock(&dev_priv->drm.struct_mutex);
>>> -	ret = guc_log_runtime_create(guc);
>>> -	mutex_unlock(&dev_priv->drm.struct_mutex);
>>> -
>>> +	ret = guc_log_map(guc);
>>>    	if (ret)
>>>    		goto err_relay;
>>>    	ret = guc_log_relay_file_create(guc);
>>>    	if (ret)
>>> -		goto err_runtime;
>>> +		goto err_unmap;
>>>    	guc_log_flush_irq_enable(guc);
>>> +	mutex_unlock(&guc->log.runtime.lock);
>>> +
>>>    	return 0;
>>> -err_runtime:
>>> -	mutex_lock(&dev_priv->drm.struct_mutex);
>>> -	guc_log_runtime_destroy(guc);
>>> -	mutex_unlock(&dev_priv->drm.struct_mutex);
>>> +err_unmap:
>>> +	guc_log_unmap(guc);
>>>    err_relay:
>>>    	guc_log_relay_destroy(guc);
>>>    err:
>>> +	mutex_unlock(&guc->log.runtime.lock);
>>> +
>>>    	return ret;
>>>    }
>>>    void intel_guc_log_unregister(struct intel_guc *guc)
>>>    {
>>> -	struct drm_i915_private *dev_priv = guc_to_i915(guc);
>>> -
>>> +	guc_log_flush_irq_disable(guc);
>> This move could be part of earlier patch.
>>>    	/*
>>>    	 * Once logging is disabled, GuC won't generate logs & send an
>>>    	 * interrupt. But there could be some data in the log buffer
>>> @@ -728,11 +678,13 @@ void intel_guc_log_unregister(struct intel_guc *guc)
>>>    	 * buffer state and then collect the left over logs.
>>>    	 */
>>>    	guc_flush_logs(guc);
>>> -	guc_log_flush_irq_disable(guc);
>>> -	mutex_lock(&dev_priv->drm.struct_mutex);
>>> -	guc_log_runtime_destroy(guc);
>>> -	mutex_unlock(&dev_priv->drm.struct_mutex);
>>> +	mutex_lock(&guc->log.runtime.lock);
>>> +
>>> +	GEM_BUG_ON(!guc_log_has_runtime(guc));
>>> +	guc_log_unmap(guc);
>>>    	guc_log_relay_destroy(guc);
>>> +
>>> +	mutex_unlock(&guc->log.runtime.lock);
>>>    }
>>> diff --git a/drivers/gpu/drm/i915/intel_guc_log.h b/drivers/gpu/drm/i915/intel_guc_log.h
>>> index 09dd2ef1933d..8c26cce77a98 100644
>>> --- a/drivers/gpu/drm/i915/intel_guc_log.h
>>> +++ b/drivers/gpu/drm/i915/intel_guc_log.h
>>> @@ -48,8 +48,7 @@ struct intel_guc_log {
>>>    		struct workqueue_struct *flush_wq;
>>>    		struct work_struct flush_work;
>>>    		struct rchan *relay_chan;
>>> -		/* To serialize the access to relay_chan */
>> Interesting, checkpatch does not complain about comment being removed for
>> mutex lock :)
> Well, it's a member of intel_guc_log, and it protects other members of
> intel_guc_log.
Yes. I was saying that if we just define new lock without comment, 
checkpatch complains but
if we remove comment of earlier defined lock it doesn't :)
> -Michał
>
>>> -		struct mutex relay_lock;
>>> +		struct mutex lock;
>>>    	} runtime;
>>>    	/* logging related stats */
>>>    	u32 capture_miss_count;
>>> diff --git a/drivers/gpu/drm/i915/intel_uc.c b/drivers/gpu/drm/i915/intel_uc.c
>>> index e9aba3c35264..55a9b5b673e0 100644
>>> --- a/drivers/gpu/drm/i915/intel_uc.c
>>> +++ b/drivers/gpu/drm/i915/intel_uc.c
>>> @@ -221,18 +221,24 @@ static void guc_free_load_err_log(struct intel_guc *guc)
>>>    int intel_uc_log_register(struct drm_i915_private *dev_priv)
>>>    {
>>> -	if (!USES_GUC(dev_priv) || !i915_modparams.guc_log_level)
>>> +	int ret = 0;
>>> +
>>> +	if (!USES_GUC(dev_priv))
>>>    		return 0;
>>> -	return intel_guc_log_register(&dev_priv->guc);
>>> +	if (i915_modparams.guc_log_level)
>>> +		ret = intel_guc_log_register(&dev_priv->guc);
>>> +
>>> +	return ret;
>>>    }
>>>    void intel_uc_log_unregister(struct drm_i915_private *dev_priv)
>>>    {
>>> -	if (!USES_GUC(dev_priv) || !i915_modparams.guc_log_level)
>>> +	if (!USES_GUC(dev_priv))
>>>    		return;
>>> -	intel_guc_log_unregister(&dev_priv->guc);
>>> +	if (i915_modparams.guc_log_level)
>>> +		intel_guc_log_unregister(&dev_priv->guc);
>>>    }
>>>    static int guc_enable_communication(struct intel_guc *guc)
>> -- 
>> Thanks,
>> Sagar
>>

-- 
Thanks,
Sagar

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2018-03-06  5:54 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-27 12:52 [PATCH 01/15] drm/i915/guc: Tidy guc_log_control Michał Winiarski
2018-02-27 12:52 ` [PATCH 02/15] drm/i915/guc: Create common entry points for log register/unregister Michał Winiarski
2018-02-27 14:11   ` Michal Wajdeczko
2018-03-05  7:09   ` Sagar Arun Kamble
2018-03-05 13:38     ` Michał Winiarski
2018-03-06  5:24       ` Sagar Arun Kamble
2018-02-27 12:52 ` [PATCH 03/15] drm/i915/guc: Move GuC notification handling to separate function Michał Winiarski
2018-03-05  7:40   ` Sagar Arun Kamble
2018-02-27 12:52 ` [PATCH 04/15] drm/i915/guc: Keep GuC interrupts enabled when using GuC Michał Winiarski
2018-03-05  9:27   ` Sagar Arun Kamble
2018-02-27 12:52 ` [PATCH 05/15] drm/i915/guc: Log runtime should consist of both mapping and relay Michał Winiarski
2018-02-27 14:21   ` Michal Wajdeczko
2018-03-05 10:31   ` Sagar Arun Kamble
2018-03-05 14:14     ` Michał Winiarski
2018-03-06  5:54       ` Sagar Arun Kamble [this message]
2018-03-06 13:50   ` Chris Wilson
2018-02-27 12:52 ` [PATCH 06/15] drm/i915/guc: Merge log relay file and channel creation Michał Winiarski
2018-03-05 11:44   ` Sagar Arun Kamble
2018-02-27 12:52 ` [PATCH 07/15] drm/i915/guc: Flush directly in log unregister Michał Winiarski
2018-03-05 11:58   ` Sagar Arun Kamble
2018-03-05 12:10     ` Michał Winiarski
2018-03-06  4:59       ` Sagar Arun Kamble
2018-02-27 12:52 ` [PATCH 08/15] drm/i915/guc: Split relay control and GuC log level Michał Winiarski
2018-03-06  7:16   ` Sagar Arun Kamble
2018-02-27 12:52 ` [PATCH 09/15] drm/i915/guc: Move check for fast memcpy_wc to relay creation Michał Winiarski
2018-02-27 14:37   ` Michal Wajdeczko
2018-02-27 15:37     ` Michał Winiarski
2018-03-06 14:00       ` Chris Wilson
2018-03-06  7:23   ` Sagar Arun Kamble
2018-02-27 12:52 ` [PATCH 10/15] drm/i915/guc: Get rid of GuC log runtime Michał Winiarski
2018-03-06  9:30   ` Sagar Arun Kamble
2018-03-06 14:02   ` Chris Wilson
2018-02-27 12:52 ` [PATCH 11/15] drm/i915/guc: Always print log stats in i915_guc_info when using GuC Michał Winiarski
2018-03-06  7:41   ` Sagar Arun Kamble
2018-02-27 12:52 ` [PATCH 12/15] drm/i915/guc: Don't print out relay statistics when relay is disabled Michał Winiarski
2018-03-06 11:21   ` Sagar Arun Kamble
2018-03-06 12:00     ` Michał Winiarski
2018-03-06 13:16   ` Sagar Arun Kamble
2018-02-27 12:52 ` [PATCH 13/15] drm/i915/guc: Allow user to control default GuC logging Michał Winiarski
2018-03-06 11:58   ` Sagar Arun Kamble
2018-02-27 12:52 ` [PATCH 14/15] drm/i915/guc: Default to non-verbose " Michał Winiarski
2018-03-06 13:44   ` Sagar Arun Kamble
2018-02-27 12:52 ` [PATCH 15/15] HAX enable guc and guc_log for CI Michał Winiarski
2018-02-27 13:38 ` ✗ Fi.CI.SPARSE: warning for series starting with [01/15] drm/i915/guc: Tidy guc_log_control Patchwork
2018-02-27 13:47 ` ✓ Fi.CI.BAT: success " Patchwork
2018-02-27 13:49 ` [PATCH 01/15] " Michal Wajdeczko
2018-02-27 20:10 ` ✗ Fi.CI.IGT: failure for series starting with [01/15] " Patchwork
2018-03-02 11:09 ` [PATCH 01/15] " Sagar Arun Kamble
2018-03-02 11:52   ` Michał Winiarski
2018-03-05  5:29     ` Sagar Arun Kamble

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=60576629-6121-318d-d3b9-4edeaab32ab1@intel.com \
    --to=sagar.a.kamble@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=michal.winiarski@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox