public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Zhenyu Wang <zhenyuw@linux.intel.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: David Airlie <airlied@linux.ie>,
	intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
	intel-gvt-dev@lists.freedesktop.org
Subject: Re: [PATCH] i915: gvt: no need to check return value of debugfs_create functions
Date: Mon, 17 Jun 2019 15:21:37 +0800	[thread overview]
Message-ID: <20190617072137.GA9684@zhen-hp.sh.intel.com> (raw)
In-Reply-To: <20190613133419.GB6634@kroah.com>


[-- Attachment #1.1: Type: text/plain, Size: 6535 bytes --]

On 2019.06.13 15:34:19 +0200, Greg Kroah-Hartman wrote:
> When calling debugfs functions, there is no need to ever check the
> return value.  The function can work or not, but the code logic should
> never do something different based on this.

Looks fine to me. We'd follow this idiom.

Reviewed-by: Zhenyu Wang <zhenyuw@linux.intel.com>

> 
> Because there is no need to check these functions, a number of local
> functions can be made to return void to simplify things as nothing can
> fail.
> 
> Cc: Zhenyu Wang <zhenyuw@linux.intel.com>
> Cc: Zhi Wang <zhi.a.wang@intel.com>
> Cc: Jani Nikula <jani.nikula@linux.intel.com>
> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: David Airlie <airlied@linux.ie>
> Cc: Daniel Vetter <daniel@ffwll.ch>
> Cc: intel-gvt-dev@lists.freedesktop.org
> Cc: intel-gfx@lists.freedesktop.org
> Cc: dri-devel@lists.freedesktop.org
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> ---
>  drivers/gpu/drm/i915/gvt/debugfs.c | 47 ++++++------------------------
>  drivers/gpu/drm/i915/gvt/gvt.c     |  4 +--
>  drivers/gpu/drm/i915/gvt/gvt.h     |  4 +--
>  drivers/gpu/drm/i915/gvt/kvmgt.c   |  3 --
>  drivers/gpu/drm/i915/gvt/vgpu.c    |  4 +--
>  5 files changed, 13 insertions(+), 49 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/gvt/debugfs.c b/drivers/gpu/drm/i915/gvt/debugfs.c
> index 8a9606f91e68..fdd9058ab8f2 100644
> --- a/drivers/gpu/drm/i915/gvt/debugfs.c
> +++ b/drivers/gpu/drm/i915/gvt/debugfs.c
> @@ -189,36 +189,19 @@ DEFINE_SIMPLE_ATTRIBUTE(vgpu_scan_nonprivbb_fops,
>  /**
>   * intel_gvt_debugfs_add_vgpu - register debugfs entries for a vGPU
>   * @vgpu: a vGPU
> - *
> - * Returns:
> - * Zero on success, negative error code if failed.
>   */
> -int intel_gvt_debugfs_add_vgpu(struct intel_vgpu *vgpu)
> +void intel_gvt_debugfs_add_vgpu(struct intel_vgpu *vgpu)
>  {
> -	struct dentry *ent;
>  	char name[16] = "";
>  
>  	snprintf(name, 16, "vgpu%d", vgpu->id);
>  	vgpu->debugfs = debugfs_create_dir(name, vgpu->gvt->debugfs_root);
> -	if (!vgpu->debugfs)
> -		return -ENOMEM;
> -
> -	ent = debugfs_create_bool("active", 0444, vgpu->debugfs,
> -				  &vgpu->active);
> -	if (!ent)
> -		return -ENOMEM;
> -
> -	ent = debugfs_create_file("mmio_diff", 0444, vgpu->debugfs,
> -				  vgpu, &vgpu_mmio_diff_fops);
> -	if (!ent)
> -		return -ENOMEM;
>  
> -	ent = debugfs_create_file("scan_nonprivbb", 0644, vgpu->debugfs,
> -				 vgpu, &vgpu_scan_nonprivbb_fops);
> -	if (!ent)
> -		return -ENOMEM;
> -
> -	return 0;
> +	debugfs_create_bool("active", 0444, vgpu->debugfs, &vgpu->active);
> +	debugfs_create_file("mmio_diff", 0444, vgpu->debugfs, vgpu,
> +			    &vgpu_mmio_diff_fops);
> +	debugfs_create_file("scan_nonprivbb", 0644, vgpu->debugfs, vgpu,
> +			    &vgpu_scan_nonprivbb_fops);
>  }
>  
>  /**
> @@ -234,27 +217,15 @@ void intel_gvt_debugfs_remove_vgpu(struct intel_vgpu *vgpu)
>  /**
>   * intel_gvt_debugfs_init - register gvt debugfs root entry
>   * @gvt: GVT device
> - *
> - * Returns:
> - * zero on success, negative if failed.
>   */
> -int intel_gvt_debugfs_init(struct intel_gvt *gvt)
> +void intel_gvt_debugfs_init(struct intel_gvt *gvt)
>  {
>  	struct drm_minor *minor = gvt->dev_priv->drm.primary;
> -	struct dentry *ent;
>  
>  	gvt->debugfs_root = debugfs_create_dir("gvt", minor->debugfs_root);
> -	if (!gvt->debugfs_root) {
> -		gvt_err("Cannot create debugfs dir\n");
> -		return -ENOMEM;
> -	}
>  
> -	ent = debugfs_create_ulong("num_tracked_mmio", 0444, gvt->debugfs_root,
> -				   &gvt->mmio.num_tracked_mmio);
> -	if (!ent)
> -		return -ENOMEM;
> -
> -	return 0;
> +	debugfs_create_ulong("num_tracked_mmio", 0444, gvt->debugfs_root,
> +			     &gvt->mmio.num_tracked_mmio);
>  }
>  
>  /**
> diff --git a/drivers/gpu/drm/i915/gvt/gvt.c b/drivers/gpu/drm/i915/gvt/gvt.c
> index 43f4242062dd..8f37eefa0a02 100644
> --- a/drivers/gpu/drm/i915/gvt/gvt.c
> +++ b/drivers/gpu/drm/i915/gvt/gvt.c
> @@ -375,9 +375,7 @@ int intel_gvt_init_device(struct drm_i915_private *dev_priv)
>  	}
>  	gvt->idle_vgpu = vgpu;
>  
> -	ret = intel_gvt_debugfs_init(gvt);
> -	if (ret)
> -		gvt_err("debugfs registration failed, go on.\n");
> +	intel_gvt_debugfs_init(gvt);
>  
>  	gvt_dbg_core("gvt device initialization is done\n");
>  	dev_priv->gvt = gvt;
> diff --git a/drivers/gpu/drm/i915/gvt/gvt.h b/drivers/gpu/drm/i915/gvt/gvt.h
> index f5a328b5290a..b73c7e63b2d5 100644
> --- a/drivers/gpu/drm/i915/gvt/gvt.h
> +++ b/drivers/gpu/drm/i915/gvt/gvt.h
> @@ -682,9 +682,9 @@ static inline void intel_gvt_mmio_set_in_ctx(
>  	gvt->mmio.mmio_attribute[offset >> 2] |= F_IN_CTX;
>  }
>  
> -int intel_gvt_debugfs_add_vgpu(struct intel_vgpu *vgpu);
> +void intel_gvt_debugfs_add_vgpu(struct intel_vgpu *vgpu);
>  void intel_gvt_debugfs_remove_vgpu(struct intel_vgpu *vgpu);
> -int intel_gvt_debugfs_init(struct intel_gvt *gvt);
> +void intel_gvt_debugfs_init(struct intel_gvt *gvt);
>  void intel_gvt_debugfs_clean(struct intel_gvt *gvt);
>  
>  
> diff --git a/drivers/gpu/drm/i915/gvt/kvmgt.c b/drivers/gpu/drm/i915/gvt/kvmgt.c
> index a68addf95c23..3c26fb28a2d1 100644
> --- a/drivers/gpu/drm/i915/gvt/kvmgt.c
> +++ b/drivers/gpu/drm/i915/gvt/kvmgt.c
> @@ -1798,9 +1798,6 @@ static int kvmgt_guest_init(struct mdev_device *mdev)
>  						"kvmgt_nr_cache_entries",
>  						0444, vgpu->debugfs,
>  						&vgpu->vdev.nr_cache_entries);
> -	if (!info->debugfs_cache_entries)
> -		gvt_vgpu_err("Cannot create kvmgt debugfs entry\n");
> -
>  	return 0;
>  }
>  
> diff --git a/drivers/gpu/drm/i915/gvt/vgpu.c b/drivers/gpu/drm/i915/gvt/vgpu.c
> index 44ce3c2b9ac1..d5a6e4e3d0fd 100644
> --- a/drivers/gpu/drm/i915/gvt/vgpu.c
> +++ b/drivers/gpu/drm/i915/gvt/vgpu.c
> @@ -420,9 +420,7 @@ static struct intel_vgpu *__intel_gvt_create_vgpu(struct intel_gvt *gvt,
>  	if (ret)
>  		goto out_clean_submission;
>  
> -	ret = intel_gvt_debugfs_add_vgpu(vgpu);
> -	if (ret)
> -		goto out_clean_sched_policy;
> +	intel_gvt_debugfs_add_vgpu(vgpu);
>  
>  	ret = intel_gvt_hypervisor_set_opregion(vgpu);
>  	if (ret)
> -- 
> 2.22.0
> 
> _______________________________________________
> intel-gvt-dev mailing list
> intel-gvt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gvt-dev

-- 
Open Source Technology Center, Intel ltd.

$gpg --keyserver wwwkeys.pgp.net --recv-keys 4D781827

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

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

      parent reply	other threads:[~2019-06-17  7:21 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-13 13:34 [PATCH] i915: gvt: no need to check return value of debugfs_create functions Greg Kroah-Hartman
2019-06-14 10:07 ` ✓ Fi.CI.BAT: success for " Patchwork
2019-06-15  7:08 ` ✗ Fi.CI.IGT: failure " Patchwork
2019-06-17  7:21 ` Zhenyu Wang [this message]

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=20190617072137.GA9684@zhen-hp.sh.intel.com \
    --to=zhenyuw@linux.intel.com \
    --cc=airlied@linux.ie \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-gvt-dev@lists.freedesktop.org \
    /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