OSDN Git Service

drm/i915: Replace "_load" with "_probe" consequently
authorJanusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Fri, 12 Jul 2019 11:24:27 +0000 (13:24 +0200)
committerChris Wilson <chris@chris-wilson.co.uk>
Fri, 12 Jul 2019 12:05:02 +0000 (13:05 +0100)
Use the "_probe" nomenclature not only in i915_driver_probe() helper
name but also in other related function / variable names for
consistency.  Only the userspace exposed name of a related module
parameter is left untouched.

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20190712112429.740-4-janusz.krzysztofik@linux.intel.com
drivers/gpu/drm/i915/display/intel_connector.c
drivers/gpu/drm/i915/gt/intel_engine_cs.c
drivers/gpu/drm/i915/i915_drv.c
drivers/gpu/drm/i915/i915_drv.h
drivers/gpu/drm/i915/i915_gem.c
drivers/gpu/drm/i915/i915_pci.c
drivers/gpu/drm/i915/intel_gvt.c
drivers/gpu/drm/i915/intel_uncore.c
drivers/gpu/drm/i915/intel_wopcm.c

index 41310f8..d0163d8 100644 (file)
@@ -118,7 +118,7 @@ int intel_connector_register(struct drm_connector *connector)
        if (ret)
                goto err;
 
-       if (i915_inject_load_failure()) {
+       if (i915_inject_probe_failure()) {
                ret = -EFAULT;
                goto err_backlight;
        }
index 76b5c06..2dc1917 100644 (file)
@@ -426,7 +426,7 @@ int intel_engines_init_mmio(struct drm_i915_private *i915)
        WARN_ON(engine_mask &
                GENMASK(BITS_PER_TYPE(mask) - 1, I915_NUM_ENGINES));
 
-       if (i915_inject_load_failure())
+       if (i915_inject_probe_failure())
                return -ENODEV;
 
        for (i = 0; i < ARRAY_SIZE(intel_engines); i++) {
index 9488aa3..7371571 100644 (file)
 static struct drm_driver driver;
 
 #if IS_ENABLED(CONFIG_DRM_I915_DEBUG)
-static unsigned int i915_load_fail_count;
+static unsigned int i915_probe_fail_count;
 
-bool __i915_inject_load_failure(const char *func, int line)
+bool __i915_inject_probe_failure(const char *func, int line)
 {
-       if (i915_load_fail_count >= i915_modparams.inject_load_failure)
+       if (i915_probe_fail_count >= i915_modparams.inject_load_failure)
                return false;
 
-       if (++i915_load_fail_count == i915_modparams.inject_load_failure) {
+       if (++i915_probe_fail_count == i915_modparams.inject_load_failure) {
                DRM_INFO("Injecting failure at checkpoint %u [%s:%d]\n",
                         i915_modparams.inject_load_failure, func, line);
                i915_modparams.inject_load_failure = 0;
@@ -100,7 +100,7 @@ bool __i915_inject_load_failure(const char *func, int line)
 
 bool i915_error_injected(void)
 {
-       return i915_load_fail_count && !i915_modparams.inject_load_failure;
+       return i915_probe_fail_count && !i915_modparams.inject_load_failure;
 }
 
 #endif
@@ -687,7 +687,7 @@ static int i915_load_modeset_init(struct drm_device *dev)
        struct pci_dev *pdev = dev_priv->drm.pdev;
        int ret;
 
-       if (i915_inject_load_failure())
+       if (i915_inject_probe_failure())
                return -ENODEV;
 
        if (HAS_DISPLAY(dev_priv)) {
@@ -903,7 +903,7 @@ static int i915_driver_init_early(struct drm_i915_private *dev_priv)
 {
        int ret = 0;
 
-       if (i915_inject_load_failure())
+       if (i915_inject_probe_failure())
                return -ENODEV;
 
        intel_device_info_subplatform_init(dev_priv);
@@ -997,7 +997,7 @@ static int i915_driver_init_mmio(struct drm_i915_private *dev_priv)
 {
        int ret;
 
-       if (i915_inject_load_failure())
+       if (i915_inject_probe_failure())
                return -ENODEV;
 
        if (i915_get_bridge_dev(dev_priv))
@@ -1541,7 +1541,7 @@ static int i915_driver_init_hw(struct drm_i915_private *dev_priv)
        struct pci_dev *pdev = dev_priv->drm.pdev;
        int ret;
 
-       if (i915_inject_load_failure())
+       if (i915_inject_probe_failure())
                return -ENODEV;
 
        intel_device_info_runtime_init(dev_priv);
@@ -1947,7 +1947,7 @@ out_runtime_pm_put:
 out_pci_disable:
        pci_disable_device(pdev);
 out_fini:
-       i915_load_error(dev_priv, "Device initialization failed (%d)\n", ret);
+       i915_probe_error(dev_priv, "Device initialization failed (%d)\n", ret);
        i915_driver_destroy(dev_priv);
        return ret;
 }
index b644f54..af07d8d 100644 (file)
 
 #if IS_ENABLED(CONFIG_DRM_I915_DEBUG)
 
-bool __i915_inject_load_failure(const char *func, int line);
-#define i915_inject_load_failure() \
-       __i915_inject_load_failure(__func__, __LINE__)
+bool __i915_inject_probe_failure(const char *func, int line);
+#define i915_inject_probe_failure() \
+       __i915_inject_probe_failure(__func__, __LINE__)
 
 bool i915_error_injected(void);
 
 #else
 
-#define i915_inject_load_failure() false
+#define i915_inject_probe_failure() false
 #define i915_error_injected() false
 
 #endif
 
-#define i915_load_error(i915, fmt, ...)                                         \
+#define i915_probe_error(i915, fmt, ...)                                  \
        __i915_printk(i915, i915_error_injected() ? KERN_DEBUG : KERN_ERR, \
                      fmt, ##__VA_ARGS__)
 
index 7ade42b..0152087 100644 (file)
@@ -1515,12 +1515,12 @@ int i915_gem_init(struct drm_i915_private *dev_priv)
        if (ret)
                goto err_gt;
 
-       if (i915_inject_load_failure()) {
+       if (i915_inject_probe_failure()) {
                ret = -ENODEV;
                goto err_gt;
        }
 
-       if (i915_inject_load_failure()) {
+       if (i915_inject_probe_failure()) {
                ret = -EIO;
                goto err_gt;
        }
@@ -1582,8 +1582,8 @@ err_uc_misc:
                 * for all other failure, such as an allocation failure, bail.
                 */
                if (!i915_reset_failed(dev_priv)) {
-                       i915_load_error(dev_priv,
-                                       "Failed to initialize GPU, declaring it wedged!\n");
+                       i915_probe_error(dev_priv,
+                                        "Failed to initialize GPU, declaring it wedged!\n");
                        i915_gem_set_wedged(dev_priv);
                }
 
index 4955872..95763ad 100644 (file)
@@ -957,7 +957,7 @@ static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
        if (err)
                return err;
 
-       if (i915_inject_load_failure()) {
+       if (i915_inject_probe_failure()) {
                i915_pci_remove(pdev);
                return -ENODEV;
        }
index 1d7d26e..842ee26 100644 (file)
@@ -95,7 +95,7 @@ int intel_gvt_init(struct drm_i915_private *dev_priv)
 {
        int ret;
 
-       if (i915_inject_load_failure())
+       if (i915_inject_probe_failure())
                return -ENODEV;
 
        if (!i915_modparams.enable_gvt) {
index 4015e96..475ab3d 100644 (file)
@@ -1331,7 +1331,7 @@ static int __fw_domain_init(struct intel_uncore *uncore,
        GEM_BUG_ON(domain_id >= FW_DOMAIN_ID_COUNT);
        GEM_BUG_ON(uncore->fw_domain[domain_id]);
 
-       if (i915_inject_load_failure())
+       if (i915_inject_probe_failure())
                return -ENOMEM;
 
        d = kzalloc(sizeof(*d), GFP_KERNEL);
index 8c85078..a6bc15b 100644 (file)
@@ -177,7 +177,7 @@ int intel_wopcm_init(struct intel_wopcm *wopcm)
 
        GEM_BUG_ON(!wopcm->size);
 
-       if (i915_inject_load_failure())
+       if (i915_inject_probe_failure())
                return -E2BIG;
 
        if (guc_fw_size >= wopcm->size) {