From 59574714c841c2ae34bbd99154bac0c4d5a86f7b Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Tue, 15 Jun 2021 15:17:58 +0200 Subject: zshenv: set GOTRACEBACK=all See https://github.com/maruel/panicparse#gotraceback --- .zsh/zshenv/80_go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.zsh/zshenv/80_go b/.zsh/zshenv/80_go index 06fb34c..b245430 100644 --- a/.zsh/zshenv/80_go +++ b/.zsh/zshenv/80_go @@ -38,4 +38,8 @@ alias gotip=$HOME/src/go/bin/go # export GOPROXY=direct # export GOSUMDB=off +# Get all goroutine traces on panic, not just the crashing one. See +# https://github.com/maruel/panicparse#gotraceback +export GOTRACEBACK=all + # vim:ft=zsh -- cgit v1.2.3-54-g00ecf owspan='2'>cgit logo index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2016-06-24 14:00:19 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2016-06-24 14:44:12 +0100
commit3e783bac8ade7dd66f97cb748582035356a210ba (patch)
treebc472c49e658b42394e0924339ed3c2cb4f71fc8
parent8f460e2c78f211f71c274001facb36b03af2ebc6 (diff)
drm/i915: Demidlayer driver unloading
To complete the transition to manual control of load/unload, we need to take over unloading from i915_pci_remove(). This allows us to correctly order our unregister vs shutdown phases, which currently are inverted due to the midlayer. However, the unload sequence is still invalid as we shutdown the driver with the last reference. Ideally, all we want to do is remove the userspace access on device removal, deferring the cleanup to the drm_dev_release() - breaking the reference cycles is then left as an exercise for the reader. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/1466773227-7994-7-git-send-email-chris@chris-wilson.co.uk