brintos

brintos / linux-shallow public Read only

0
0
Text · 218 B · 9e9d585 Raw
11 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef _TOOLS_LINUX_CACHE_H3#define _TOOLS_LINUX_CACHE_H4 5#define L1_CACHE_SHIFT		56#define L1_CACHE_BYTES		(1 << L1_CACHE_SHIFT)7 8#define SMP_CACHE_BYTES L1_CACHE_BYTES9 10#endif11