policy.h (54a88cd259204f80672393602501567c74d64106) policy.h (a8a74df150835f5ceff89d40fadda1cf3961fdae)
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (C) 2020-2024 Microsoft Corporation. All rights reserved.
4 */
5#ifndef _IPE_POLICY_H
6#define _IPE_POLICY_H
7
8#include <linux/list.h>

--- 16 unchanged lines hidden (view full) ---

25 IPE_ACTION_ALLOW = 0,
26 IPE_ACTION_DENY,
27 __IPE_ACTION_MAX
28};
29
30#define IPE_ACTION_INVALID __IPE_ACTION_MAX
31
32enum ipe_prop_type {
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (C) 2020-2024 Microsoft Corporation. All rights reserved.
4 */
5#ifndef _IPE_POLICY_H
6#define _IPE_POLICY_H
7
8#include <linux/list.h>

--- 16 unchanged lines hidden (view full) ---

25 IPE_ACTION_ALLOW = 0,
26 IPE_ACTION_DENY,
27 __IPE_ACTION_MAX
28};
29
30#define IPE_ACTION_INVALID __IPE_ACTION_MAX
31
32enum ipe_prop_type {
33 IPE_PROP_BOOT_VERIFIED_FALSE,
34 IPE_PROP_BOOT_VERIFIED_TRUE,
33 __IPE_PROP_MAX
34};
35
36#define IPE_PROP_INVALID __IPE_PROP_MAX
37
38struct ipe_prop {
39 struct list_head next;
40 enum ipe_prop_type type;

--- 43 unchanged lines hidden ---
35 __IPE_PROP_MAX
36};
37
38#define IPE_PROP_INVALID __IPE_PROP_MAX
39
40struct ipe_prop {
41 struct list_head next;
42 enum ipe_prop_type type;

--- 43 unchanged lines hidden ---