summaryrefslogtreecommitdiff
path: root/scripts/gdb/linux/vfs.py
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2025-07-04 17:53:03 +0200
committerTakashi Iwai <tiwai@suse.de>2025-07-04 17:53:03 +0200
commit4f5b1aa2e40651c8ec196c15e6e8c07e3a0314ca (patch)
tree3f50c4f5b7d615cbc5a535ca55979b97d34f8096 /scripts/gdb/linux/vfs.py
parent043faef334a1f3d96ae88e1b7618bfa2b4946388 (diff)
parent3b3312f28ee2d9c386602f8521e419cfc69f4823 (diff)
Merge tag 'asoc-fix-v6.16-rc4' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v6.16 An update for the MAINTAINERS file, plus a number of small driver specific fixes and device quirks.
Diffstat (limited to 'scripts/gdb/linux/vfs.py')
-rw-r--r--scripts/gdb/linux/vfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gdb/linux/vfs.py b/scripts/gdb/linux/vfs.py
index c77b9ce75f6d..b5fbb18ccb77 100644
--- a/scripts/gdb/linux/vfs.py
+++ b/scripts/gdb/linux/vfs.py
@@ -22,7 +22,7 @@ def dentry_name(d):
if parent == d or parent == 0:
return ""
p = dentry_name(d['d_parent']) + "/"
- return p + d['d_iname'].string()
+ return p + d['d_shortname']['string'].string()
class DentryName(gdb.Function):
"""Return string of the full path of a dentry.