Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v5.11 17 lines 387 B view raw
1/* SPDX-License-Identifier: GPL-2.0+ */ 2 3/* 4 * Copyright 2018 IBM Corporation. 5 */ 6 7#ifndef _SELFTESTS_POWERPC_SECURITY_FLUSH_UTILS_H 8#define _SELFTESTS_POWERPC_SECURITY_FLUSH_UTILS_H 9 10#define CACHELINE_SIZE 128 11 12void syscall_loop(char *p, unsigned long iterations, 13 unsigned long zero_size); 14 15void set_dscr(unsigned long val); 16 17#endif /* _SELFTESTS_POWERPC_SECURITY_FLUSH_UTILS_H */