We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10d04c2 commit e6d3e65Copy full SHA for e6d3e65
scripts/gdb/linux/vfs.py
@@ -22,7 +22,7 @@ def dentry_name(d):
22
if parent == d or parent == 0:
23
return ""
24
p = dentry_name(d['d_parent']) + "/"
25
- return p + d['d_shortname']['string'].string()
+ return p + d['d_name']['name'].string()
26
27
class DentryName(gdb.Function):
28
"""Return string of the full path of a dentry.
0 commit comments