This file is indexed.

/usr/share/systemtap/runtime/linux/autoconf-tracepoint-strings.c is in systemtap-common 2.6-0.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
#include <linux/tracepoint.h>

/* Until 3.15 (commit de7b2973903c), tracepoints used strings to register.  */
void foo (void) {
	(void) tracepoint_probe_register("foo", NULL, NULL);
	tracepoint_probe_unregister("foo", NULL, NULL);
}