summaryrefslogtreecommitdiffstats
path: root/tools/perf/tests/workloads/datasym.c
blob: ddd40bc63448ae017d86684302fe62aa1efde730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <linux/compiler.h>
#include "../tests.h"

typedef struct _buf {
	char data1;
	char reserved[55];
	char data2;
} buf __attribute__((aligned(64)));

static buf buf1 = {
	/* to have this in the data section */
	.reserved[0] = 1,
};

static int datasym(int argc __maybe_unused, const char **argv __maybe_unused)
{
	for (;;) {
		buf1.data1++;
		buf1.data2 += buf1.data1;
	}
	return 0;
}

DEFINE_WORKLOAD(datasym);