mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 16:36:52 +07:00
97026b5a5a
To reduce the complexity of flag_array, and allow the removal of default 0 value of non existing flags, lets have one flag_array table for each platform family with only the really existing flags. Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com> Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
20 lines
300 B
C
20 lines
300 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#include <linux/types.h>
|
|
|
|
struct flag_info {
|
|
u64 mask;
|
|
u64 val;
|
|
const char *set;
|
|
const char *clear;
|
|
bool is_val;
|
|
int shift;
|
|
};
|
|
|
|
struct pgtable_level {
|
|
const struct flag_info *flag;
|
|
size_t num;
|
|
u64 mask;
|
|
};
|
|
|
|
extern struct pgtable_level pg_level[5];
|