Lines Matching defs:path_beneath_attr
96 struct landlock_path_beneath_attr path_beneath_attr;
111 path_beneath_size = sizeof(path_beneath_attr.allowed_access);
112 path_beneath_size += sizeof(path_beneath_attr.parent_fd);
113 BUILD_BUG_ON(sizeof(path_beneath_attr) != path_beneath_size);
114 BUILD_BUG_ON(sizeof(path_beneath_attr) != 12);
325 struct landlock_path_beneath_attr path_beneath_attr;
331 res = copy_from_user(&path_beneath_attr, rule_attr,
332 sizeof(path_beneath_attr));
340 if (!path_beneath_attr.allowed_access)
345 if ((path_beneath_attr.allowed_access | mask) != mask)
349 err = get_path_from_fd(path_beneath_attr.parent_fd, &path);
355 path_beneath_attr.allowed_access);