Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.12 16 lines 351 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (C) 2020-2024 Microsoft Corporation. All rights reserved. 4 */ 5 6#ifndef _IPE_FS_H 7#define _IPE_FS_H 8 9#include "policy.h" 10 11extern struct dentry *policy_root __ro_after_init; 12 13int ipe_new_policyfs_node(struct ipe_policy *p); 14void ipe_del_policyfs_node(struct ipe_policy *p); 15 16#endif /* _IPE_FS_H */