stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] MAINTAINERS: Update drm/i915 bug filing URL
@ 2020-02-12 16:04 Jani Nikula
  2020-02-12 16:04 ` [PATCH 2/2] drm/i915: " Jani Nikula
  2020-02-13 17:37 ` [PATCH 1/2] MAINTAINERS: " Sasha Levin
  0 siblings, 2 replies; 6+ messages in thread
From: Jani Nikula @ 2020-02-12 16:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: jani.nikula, stable

We've moved from bugzilla to gitlab.

Cc: stable@vger.kernel.org
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index b9d8f6c2fd24..3f9a78a726ae 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -8416,7 +8416,7 @@ M:	Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
 M:	Rodrigo Vivi <rodrigo.vivi@intel.com>
 L:	intel-gfx@lists.freedesktop.org
 W:	https://01.org/linuxgraphics/
-B:	https://01.org/linuxgraphics/documentation/how-report-bugs
+B:	https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
 C:	irc://chat.freenode.net/intel-gfx
 Q:	http://patchwork.freedesktop.org/project/intel-gfx/
 T:	git git://anongit.freedesktop.org/drm-intel
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] drm/i915: Update drm/i915 bug filing URL
  2020-02-12 16:04 [PATCH 1/2] MAINTAINERS: Update drm/i915 bug filing URL Jani Nikula
@ 2020-02-12 16:04 ` Jani Nikula
  2020-02-13  8:01   ` [Intel-gfx] " Chris Wilson
  2020-02-13 17:37   ` Sasha Levin
  2020-02-13 17:37 ` [PATCH 1/2] MAINTAINERS: " Sasha Levin
  1 sibling, 2 replies; 6+ messages in thread
From: Jani Nikula @ 2020-02-12 16:04 UTC (permalink / raw)
  To: intel-gfx; +Cc: jani.nikula, stable

We've moved from bugzilla to gitlab.

Cc: stable@vger.kernel.org
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/Kconfig          | 5 ++---
 drivers/gpu/drm/i915/i915_gpu_error.c | 3 ++-
 drivers/gpu/drm/i915/i915_utils.c     | 5 ++---
 3 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/i915/Kconfig b/drivers/gpu/drm/i915/Kconfig
index 023206136d6d..9afa5c4a6bf0 100644
--- a/drivers/gpu/drm/i915/Kconfig
+++ b/drivers/gpu/drm/i915/Kconfig
@@ -68,9 +68,8 @@ config DRM_I915_CAPTURE_ERROR
 	help
 	  This option enables capturing the GPU state when a hang is detected.
 	  This information is vital for triaging hangs and assists in debugging.
-	  Please report any hang to
-	    https://bugs.freedesktop.org/enter_bug.cgi?product=DRI
-	  for triaging.
+	  Please report any hang for triaging according to:
+	    https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
 
 	  If in doubt, say "Y".
 
diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c
index 5a1517d0bf3b..2417c211e1b6 100644
--- a/drivers/gpu/drm/i915/i915_gpu_error.c
+++ b/drivers/gpu/drm/i915/i915_gpu_error.c
@@ -1862,7 +1862,8 @@ void i915_error_state_store(struct i915_gpu_coredump *error)
 	if (!xchg(&warned, true) &&
 	    ktime_get_real_seconds() - DRIVER_TIMESTAMP < DAY_AS_SECONDS(180)) {
 		pr_info("GPU hangs can indicate a bug anywhere in the entire gfx stack, including userspace.\n");
-		pr_info("Please file a _new_ bug report on bugs.freedesktop.org against DRI -> DRM/Intel\n");
+		pr_info("Please file a _new_ bug report at https://gitlab.freedesktop.org/drm/intel/issues/new.\n");
+		pr_info("Please see https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs for details.\n");
 		pr_info("drm/i915 developers can then reassign to the right component if it's not a kernel issue.\n");
 		pr_info("The GPU crash dump is required to analyze GPU hangs, so please always attach it.\n");
 		pr_info("GPU crash dump saved to /sys/class/drm/card%d/error\n",
diff --git a/drivers/gpu/drm/i915/i915_utils.c b/drivers/gpu/drm/i915/i915_utils.c
index c47261ae86ea..632d6953c78d 100644
--- a/drivers/gpu/drm/i915/i915_utils.c
+++ b/drivers/gpu/drm/i915/i915_utils.c
@@ -8,9 +8,8 @@
 #include "i915_drv.h"
 #include "i915_utils.h"
 
-#define FDO_BUG_URL "https://bugs.freedesktop.org/enter_bug.cgi?product=DRI"
-#define FDO_BUG_MSG "Please file a bug at " FDO_BUG_URL " against DRM/Intel " \
-		    "providing the dmesg log by booting with drm.debug=0xf"
+#define FDO_BUG_URL "https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs"
+#define FDO_BUG_MSG "Please file a bug on drm/i915; see " FDO_BUG_URL " for details."
 
 void
 __i915_printk(struct drm_i915_private *dev_priv, const char *level,
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [Intel-gfx] [PATCH 2/2] drm/i915: Update drm/i915 bug filing URL
  2020-02-12 16:04 ` [PATCH 2/2] drm/i915: " Jani Nikula
@ 2020-02-13  8:01   ` Chris Wilson
  2020-02-17  9:26     ` Jani Nikula
  2020-02-13 17:37   ` Sasha Levin
  1 sibling, 1 reply; 6+ messages in thread
From: Chris Wilson @ 2020-02-13  8:01 UTC (permalink / raw)
  To: Jani Nikula, intel-gfx; +Cc: jani.nikula, stable

Quoting Jani Nikula (2020-02-12 16:04:34)
> We've moved from bugzilla to gitlab.
> 
> Cc: stable@vger.kernel.org
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Hopefully the extra how-to-file-a-bug appeases Martin,
Both,
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
-Chris

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] drm/i915: Update drm/i915 bug filing URL
  2020-02-12 16:04 ` [PATCH 2/2] drm/i915: " Jani Nikula
  2020-02-13  8:01   ` [Intel-gfx] " Chris Wilson
@ 2020-02-13 17:37   ` Sasha Levin
  1 sibling, 0 replies; 6+ messages in thread
From: Sasha Levin @ 2020-02-13 17:37 UTC (permalink / raw)
  To: Sasha Levin, Jani Nikula, intel-gfx; +Cc: jani.nikula, stable, stable, stable

Hi,

[This is an automated email]

This commit has been processed because it contains a -stable tag.
The stable tag indicates that it's relevant for the following trees: all

The bot has tested the following trees: v5.5.3, v5.4.19, v4.19.103, v4.14.170, v4.9.213, v4.4.213.

v5.5.3: Build OK!
v5.4.19: Failed to apply! Possible dependencies:
    d30213e533fa ("drm/i915: Fix Kconfig indentation")

v4.19.103: Failed to apply! Possible dependencies:
    0e39037b3165 ("drm/i915: Cache the error string")
    1032a2af93f5 ("drm/i915: use upstream version of header tests")
    16e4dd0342a8 ("drm/i915: Markup paired operations on wakerefs")
    39e2f501c1b4 ("drm/i915: Split struct intel_context definition to its own header")
    52c0fdb25c7c ("drm/i915: Replace global breadcrumbs with per-context interrupt tracking")
    538ef96b9dae ("drm/i915/gem: Track the rpm wakerefs")
    6b048706f407 ("drm/i915: Forcibly flush unwanted requests in drop-caches")
    87f1ef225242 ("drm/i915: Record the sseu configuration per-context & engine")
    95fd94a645f7 ("drm/i915: avoid rebuilding i915_gpu_error.o on version string updates")
    c0a6aa7ec2c3 ("drm/i915: Show actual alongside requested frequency in debugfs/i915_rps_boost_info")
    c2400ec3b6d1 ("drm/i915: add Makefile magic for testing headers are self-contained")
    c44301fce614 ("drm/i915: Allow control of PSR at runtime through debugfs, v6")
    d30213e533fa ("drm/i915: Fix Kconfig indentation")
    e6154e4cb8b0 ("drm/i915: Skip the ERR_PTR error state")
    eb8d0f5af4ec ("drm/i915: Remove GPU reset dependence on struct_mutex")
    fb6f0b64e455 ("drm/i915: Prevent machine hang from Broxton's vtd w/a and error capture")

v4.14.170: Failed to apply! Possible dependencies:
    08dd3e1acc16 ("drm/i915/execlists: Move insert_request()")
    1032a2af93f5 ("drm/i915: use upstream version of header tests")
    27a5f61b377b ("drm/i915: Cancel all ready but queued requests when wedging")
    39e2f501c1b4 ("drm/i915: Split struct intel_context definition to its own header")
    45ec5bc8774b ("drm/i915/guc: Remove obsolete comments and remove unused variable")
    52c0fdb25c7c ("drm/i915: Replace global breadcrumbs with per-context interrupt tracking")
    52d7f16e5543 ("drm/i915: Stop tracking timeline->inflight_seqnos")
    5427f207852d ("drm/i915: Bump wait-times for the final CS interrupt before parking")
    62b5ed1f35d7 ("drm/i915: Fix i915_gem_context.h header")
    6d2cb5aa383b ("drm/i915/execlists: Read the context-status buffer from the HWSP")
    767a983ab255 ("drm/i915/execlists: Read the context-status HEAD from the HWSP")
    85e2fe679e05 ("drm/i915/guc: Submit GuC workitems containing coalesced requests")
    87f1ef225242 ("drm/i915: Record the sseu configuration per-context & engine")
    aba5e278586b ("drm/i915: Add a hook for making the engines idle (parking) and unparking")
    b620e870218e ("drm/i915: Make own struct for execlist items")
    c2400ec3b6d1 ("drm/i915: add Makefile magic for testing headers are self-contained")
    c5d1f5562ea7 ("drm/i915: Include i915_scheduler.h from i915_gem_context.h")
    d30213e533fa ("drm/i915: Fix Kconfig indentation")
    e4d2006f8f04 ("drm/i915: Split out parking from the idle worker for reuse")
    eb8d0f5af4ec ("drm/i915: Remove GPU reset dependence on struct_mutex")
    ff320d6e72ff ("drm/i915: Synchronize irq before parking each engine")

v4.9.213: Failed to apply! Possible dependencies:
    1032a2af93f5 ("drm/i915: use upstream version of header tests")
    1233e2db199d ("drm/i915: Move object backing storage manipulation to its own locking")
    275f039db56f ("drm/i915: Move user fault tracking to a separate list")
    3594a3e21f1f ("drm/i915: Remove superfluous locking around userfault_list")
    3599a91cc8d0 ("drm/i915: Allow shrinking of userptr objects once again")
    39e2f501c1b4 ("drm/i915: Split struct intel_context definition to its own header")
    6095868a271d ("drm/i915: Complete kerneldoc for struct i915_gem_context")
    7093f5ff75ae ("drm/i915: GVT-g driver depends on 64BIT kernel")
    7c108fd8feac ("drm/i915: Move fence cancellation to runtime suspend")
    8baa1f04b9ed ("drm/i915: Update debugfs describe_obj() to show fault-mappable")
    920cf4194954 ("drm/i915: Introduce an internal allocator for disposable private objects")
    96d776345277 ("drm/i915: Use a radixtree for random access to the object's backing storage")
    98a2f411671f ("drm/i915: Allow disabling error capture")
    a4f5ea64f0a8 ("drm/i915: Refactor object page API")
    b42fe9ca0a1e ("drm/i915: Split out i915_vma.c")
    c2400ec3b6d1 ("drm/i915: add Makefile magic for testing headers are self-contained")
    d30213e533fa ("drm/i915: Fix Kconfig indentation")
    f8a7fde45610 ("drm/i915: Defer active reference until required")

v4.4.213: Failed to apply! Possible dependencies:
    0a9d2bed5557 ("drm/i915/skl: Making DC6 entry is the last call in suspend flow.")
    13ae3a0d5b13 ("drm/i915/gen9: simplify DC toggling code")
    414b7999b8be ("drm/i915/gen9: Remove csr.state, csr_lock and related code.")
    443646c7ee27 ("drm/i915/gen9: Add boot parameter for disabling DC6")
    4a76f295bc01 ("drm/i915/skl: don't toggle PW1 and MISC power wells on-demand")
    4deccbb26b4d ("drm/i915/gen9: Always set mask memory up when enabling DC5 or DC6")
    56fcfd6333a8 ("drm/i915: fix the power well ID for always on wells")
    755412e29c77 ("drm/i915: Add an optional selection from i915 of CONFIG_MMU_NOTIFIER")
    9777cca0c4d3 ("drm/i915: Skip capturing an error state if we already have one")
    98a2f411671f ("drm/i915: Allow disabling error capture")
    9c5308ea1cd4 ("drm/i915/skl: Refuse to load outdated dmc firmware")
    9f836f9016ad ("drm/i915/gen9: Turn DC handling into a power well")
    af5fead2d994 ("drm/i915/gen9: move assert_csr_loaded into intel_rpm.c")
    b6e7d894c3d2 ("drm/i915/skl: Store and print the DMC firmware version we load")
    c838d719d625 ("drm/i915: Decouple struct i915_params i915 into i915_params.h")
    e23ceb83e8b5 ("drm/i915: move drmP.h include to i915_drv.h")
    edd993fd1728 ("drm/i915: Remove DDI power domain exclusion SKL_DISPLAY_ALWAYS_ON_POWER_DOMAINS")


NOTE: The patch will not be queued to stable trees until it is upstream.

How should we proceed with this patch?

-- 
Thanks,
Sasha

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] MAINTAINERS: Update drm/i915 bug filing URL
  2020-02-12 16:04 [PATCH 1/2] MAINTAINERS: Update drm/i915 bug filing URL Jani Nikula
  2020-02-12 16:04 ` [PATCH 2/2] drm/i915: " Jani Nikula
@ 2020-02-13 17:37 ` Sasha Levin
  1 sibling, 0 replies; 6+ messages in thread
From: Sasha Levin @ 2020-02-13 17:37 UTC (permalink / raw)
  To: Sasha Levin, Jani Nikula, intel-gfx; +Cc: jani.nikula, stable, stable, stable

Hi,

[This is an automated email]

This commit has been processed because it contains a -stable tag.
The stable tag indicates that it's relevant for the following trees: all

The bot has tested the following trees: v5.5.3, v5.4.19, v4.19.103, v4.14.170, v4.9.213, v4.4.213.

v5.5.3: Build OK!
v5.4.19: Build OK!
v4.19.103: Build OK!
v4.14.170: Build OK!
v4.9.213: Failed to apply! Possible dependencies:
    15accb3cbbcd ("MAINTAINERS: extend mvebu SoC entry with pinctrl drivers")
    1cb0b57fec06 ("MAINTAINERS: add irqchip related drivers to Marvell EBU maintainers")
    20bb5505e96f ("MAINTAINERS: cpufreq: add bmips-cpufreq.c")
    21dd0ece34c2 ("ARM: dts: at91: add devicetree for the Axentia TSE-850")
    2e7d1098c00c ("MAINTAINERS: add entry for dma mapping helpers")
    384fe7a4d732 ("drivers: net: xgene-v2: Add DMA descriptor")
    3b3f9a75d931 ("drivers: net: xgene-v2: Add base driver")
    3f0d80b6d228 ("MAINTAINERS: Add bnxt_en maintainer info.")
    413dfbbfca54 ("MAINTAINERS: add entry for Aspeed I2C driver")
    420a3879d694 ("MAINTAINERS: change email address from atmel to microchip")
    51c5d8447bd7 ("MMC: meson: initial support for GX platforms")
    52c468fb37b6 ("MAINTAINERS: oxnas: Add new files definitions")
    70dbd9b258d5 ("MAINTAINERS: Add entry for APM X-Gene SoC Ethernet (v2) driver")
    7683e9e52925 ("Properly alphabetize MAINTAINERS file")
    81ccd0cab29b ("drivers: net: xgene-v2: Add mac configuration")
    aa43112445f0 ("ASoC: atmel: tse850: add ASoC driver for the Axentia TSE-850")
    b105bcdaaa0e ("drivers: net: xgene-v2: Add transmit and receive")
    c821d30148ca ("ASoC: tse850: document axentia,tse850-pcm5142 bindings")
    e7c1572f6565 ("MAINTAINERS: sort F entries for Marvell EBU maintainers")
    fd33f3eca6bf ("MAINTAINERS: Add maintainers for the meson clock driver")

v4.4.213: Failed to apply! Possible dependencies:
    1f664ab7d9d4 ("MAINTAINERS: update entry for Marvell ARM platform maintainers")
    27eb6622ab67 ("config: add android config fragments")
    384fe7a4d732 ("drivers: net: xgene-v2: Add DMA descriptor")
    3b3f9a75d931 ("drivers: net: xgene-v2: Add base driver")
    413dfbbfca54 ("MAINTAINERS: add entry for Aspeed I2C driver")
    51c5d8447bd7 ("MMC: meson: initial support for GX platforms")
    5255034d1701 ("ARM: mach-artpec: add entry to MAINTAINERS")
    54176cc68038 ("maintainers: update rmk's email address(es)")
    5b7551db8688 ("ARM: dts: keystone: Add minimum support for K2G evm")
    5edafc29829b ("ARM: dts: k2*: Rename the k2* files to keystone-k2* files")
    6683d91cde25 ("MAINTAINERS: ARM/Amlogic: add co-maintainer, misc. updates")
    70dbd9b258d5 ("MAINTAINERS: Add entry for APM X-Gene SoC Ethernet (v2) driver")
    7683e9e52925 ("Properly alphabetize MAINTAINERS file")
    79318452cb36 ("MAINTAINERS: Extend info, add wiki and ml for meson arch")
    81ccd0cab29b ("drivers: net: xgene-v2: Add mac configuration")
    8bb0bce92ec9 ("MAINTAINERS: add maintainer and reviewers for the etnaviv DRM driver")
    8c2ed9bcfbeb ("arm: Add Aspeed machine")
    8cb555b603f3 ("MAINTAINERS: add Chanho Min as ARM/LG1K maintainer")
    9f123def55d3 ("cpufreq: mvebu: Move cpufreq code into drivers/cpufreq/")
    b105bcdaaa0e ("drivers: net: xgene-v2: Add transmit and receive")
    dcc3068a757e ("MAINTAINERS: Extend dts entry for ARM64 mvebu files")
    e68d7c143a62 ("MAINTAINERS: Add missing platform maintainers for dts files")
    e7c1572f6565 ("MAINTAINERS: sort F entries for Marvell EBU maintainers")
    fd33f3eca6bf ("MAINTAINERS: Add maintainers for the meson clock driver")
    fd3a628e3f2a ("MAINTAINERS: Add entry for APM X-Gene SoC PMU driver")


NOTE: The patch will not be queued to stable trees until it is upstream.

How should we proceed with this patch?

-- 
Thanks,
Sasha

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Intel-gfx] [PATCH 2/2] drm/i915: Update drm/i915 bug filing URL
  2020-02-13  8:01   ` [Intel-gfx] " Chris Wilson
@ 2020-02-17  9:26     ` Jani Nikula
  0 siblings, 0 replies; 6+ messages in thread
From: Jani Nikula @ 2020-02-17  9:26 UTC (permalink / raw)
  To: Chris Wilson, intel-gfx; +Cc: stable

On Thu, 13 Feb 2020, Chris Wilson <chris@chris-wilson.co.uk> wrote:
> Quoting Jani Nikula (2020-02-12 16:04:34)
>> We've moved from bugzilla to gitlab.
>> 
>> Cc: stable@vger.kernel.org
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>
> Hopefully the extra how-to-file-a-bug appeases Martin,
> Both,
> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>

Thanks, both pushed.

BR,
Jani.


-- 
Jani Nikula, Intel Open Source Graphics Center

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-02-17  9:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-12 16:04 [PATCH 1/2] MAINTAINERS: Update drm/i915 bug filing URL Jani Nikula
2020-02-12 16:04 ` [PATCH 2/2] drm/i915: " Jani Nikula
2020-02-13  8:01   ` [Intel-gfx] " Chris Wilson
2020-02-17  9:26     ` Jani Nikula
2020-02-13 17:37   ` Sasha Levin
2020-02-13 17:37 ` [PATCH 1/2] MAINTAINERS: " Sasha Levin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).