Lines Matching defs:path_beneath_attr
88 struct landlock_path_beneath_attr path_beneath_attr;
100 path_beneath_size = sizeof(path_beneath_attr.allowed_access);
101 path_beneath_size += sizeof(path_beneath_attr.parent_fd);
102 BUILD_BUG_ON(sizeof(path_beneath_attr) != path_beneath_size);
103 BUILD_BUG_ON(sizeof(path_beneath_attr) != 12);
321 struct landlock_path_beneath_attr path_beneath_attr;
344 res = copy_from_user(&path_beneath_attr, rule_attr,
345 sizeof(path_beneath_attr));
355 if (!path_beneath_attr.allowed_access) {
363 if ((path_beneath_attr.allowed_access | ruleset->fs_access_masks[0]) !=
370 err = get_path_from_fd(path_beneath_attr.parent_fd, &path);
376 path_beneath_attr.allowed_access);