aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/gdb/linux/constants.py.in
diff options
context:
space:
mode:
authorKieran Bingham <kieran@ksquared.org.uk>2016-07-14 15:07:06 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2016-07-15 01:54:27 -0400
commitb447e02548a3304c47b78b5e2d75a4312a8f17e1 (patch)
treea4a55111089dfffd84d88404c677776255dd969f /scripts/gdb/linux/constants.py.in
parent552ab2a3eaa4338fa5b33aa4c07ea2c542ddcea5 (diff)
Revert "scripts/gdb: add a Radix Tree Parser"
This reverts commit e127a73d41ac ("scripts/gdb: add a Radix Tree Parser") The python implementation of radix-tree was merged at the same time as the radix-tree system was heavily reworked from commit e9256efcc8e3 ("radix-tree: introduce radix_tree_empty") to 3bcadd6fa6c4 ("radix-tree: free up the bottom bit of exceptional entries for reuse") and no longer functions, but also prevents other gdb scripts from loading. This functionality has not yet hit a release, so simply remove it for now Link: http://lkml.kernel.org/r/1467127337-11135-6-git-send-email-kieran@bingham.xyz Signed-off-by: Kieran Bingham <kieran@bingham.xyz> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/gdb/linux/constants.py.in')
-rw-r--r--scripts/gdb/linux/constants.py.in7
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/gdb/linux/constants.py.in b/scripts/gdb/linux/constants.py.in
index 07e6c2befe36..7986f4e0da12 100644
--- a/scripts/gdb/linux/constants.py.in
+++ b/scripts/gdb/linux/constants.py.in
@@ -14,7 +14,6 @@
14 14
15#include <linux/fs.h> 15#include <linux/fs.h>
16#include <linux/mount.h> 16#include <linux/mount.h>
17#include <linux/radix-tree.h>
18 17
19/* We need to stringify expanded macros so that they can be parsed */ 18/* We need to stringify expanded macros so that they can be parsed */
20 19
@@ -51,9 +50,3 @@ LX_VALUE(MNT_NOEXEC)
51LX_VALUE(MNT_NOATIME) 50LX_VALUE(MNT_NOATIME)
52LX_VALUE(MNT_NODIRATIME) 51LX_VALUE(MNT_NODIRATIME)
53LX_VALUE(MNT_RELATIME) 52LX_VALUE(MNT_RELATIME)
54
55/* linux/radix-tree.h */
56LX_VALUE(RADIX_TREE_INDIRECT_PTR)
57LX_GDBPARSED(RADIX_TREE_HEIGHT_MASK)
58LX_GDBPARSED(RADIX_TREE_MAP_SHIFT)
59LX_GDBPARSED(RADIX_TREE_MAP_MASK)