summaryrefslogtreecommitdiff
path: root/kernel/sched/rq-offsets.c
blob: a23747bbe25b4d958bfb85a373ed6a0e0a351b04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: GPL-2.0
#define COMPILE_OFFSETS
#include <linux/kbuild.h>
#include <linux/types.h>
#include "sched.h"

int main(void)
{
	DEFINE(RQ_nr_pinned, offsetof(struct rq, nr_pinned));

	return 0;
}