summaryrefslogtreecommitdiff
path: root/scripts/gdb/linux/vfs.py
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-06-30 08:50:04 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-06-30 08:50:04 +0300
commit815ac67919148f9d65537af550fd26e2cbbd47bb (patch)
treed52e131ad5f44e95722d9277bae74fc22d9a9a60 /scripts/gdb/linux/vfs.py
parentacc902de05b2b8229dc27820925b7573b6d2d34e (diff)
parentd0b3b7b22dfa1f4b515fd3a295b3fd958f9e81af (diff)
downloadlinux-815ac67919148f9d65537af550fd26e2cbbd47bb.tar.xz
Merge 6.16-rc4 into tty-next
We need the tty/serial fixes in here as well. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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.