Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

scripts: gdb: move MNT_* constants to gdb-parsed

Since these are now no longer defines, but in an enum.

Link: https://lkml.kernel.org/r/20250618134629.25700-2-johannes@sipsolutions.net
Fixes: 101f2bbab541 ("fs: convert mount flags to enum")
Reviewed-by: Benjamin Berg <benjamin.berg@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Cc: Jan Kiszka <jan.kiszka@siemens.com>
Cc: Kieran Bingham <kbingham@kernel.org>
Cc: Stephen Brennan <stephen.s.brennan@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

Johannes Berg and committed by
Andrew Morton
41a7f737 64960497

+6 -6
+6 -6
scripts/gdb/linux/constants.py.in
··· 73 73 LX_GDBPARSED(MOD_RO_AFTER_INIT) 74 74 75 75 /* linux/mount.h */ 76 - LX_VALUE(MNT_NOSUID) 77 - LX_VALUE(MNT_NODEV) 78 - LX_VALUE(MNT_NOEXEC) 79 - LX_VALUE(MNT_NOATIME) 80 - LX_VALUE(MNT_NODIRATIME) 81 - LX_VALUE(MNT_RELATIME) 76 + LX_GDBPARSED(MNT_NOSUID) 77 + LX_GDBPARSED(MNT_NODEV) 78 + LX_GDBPARSED(MNT_NOEXEC) 79 + LX_GDBPARSED(MNT_NOATIME) 80 + LX_GDBPARSED(MNT_NODIRATIME) 81 + LX_GDBPARSED(MNT_RELATIME) 82 82 83 83 /* linux/threads.h */ 84 84 LX_VALUE(NR_CPUS)